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

Syntax

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

Parameters

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

Implements

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

See Also