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

Syntax

Visual Basic (Declaration)
Public Overrides Function GenerateCommand ( _
	type As CommandType, _
	sqlString As SqlString, _
	parameterTypes As SqlType() _
) As IDbCommand
C#
public override IDbCommand GenerateCommand(
	CommandType type,
	SqlString sqlString,
	SqlType[] parameterTypes
)
Visual C++
public:
virtual IDbCommand^ GenerateCommand(
	CommandType type, 
	SqlString^ sqlString, 
	array<SqlType^>^ parameterTypes
) override
JavaScript
function generateCommand(type, sqlString, parameterTypes);

Parameters

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

Implements

IDriver..::.GenerateCommand(CommandType, SqlString, array<SqlType>[]()[])

See Also