Namespace:  NHibernate.Impl
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Function PrepareCommand ( _
	type As CommandType, _
	sql As SqlString, _
	parameterTypes As SqlType() _
) As IDbCommand
C#
public IDbCommand PrepareCommand(
	CommandType type,
	SqlString sql,
	SqlType[] parameterTypes
)
Visual C++
public:
virtual IDbCommand^ PrepareCommand(
	CommandType type, 
	SqlString^ sql, 
	array<SqlType^>^ parameterTypes
) sealed
JavaScript
function prepareCommand(type, sql, parameterTypes);

Parameters

type
Type: System.Data..::.CommandType
sql
Type: NHibernate.SqlCommand..::.SqlString
parameterTypes
Type: array< NHibernate.SqlTypes..::.SqlType >[]()[]

Implements

IBatcher..::.PrepareCommand(CommandType, SqlString, array<SqlType>[]()[])

See Also