Puts the Assembly Qualified Name of the Type Property into to the IDbCommand.

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

Syntax

Visual Basic (Declaration)
Public Overrides Sub Set ( _
	cmd As IDbCommand, _
	value As Object, _
	index As Integer _
)
C#
public override void Set(
	IDbCommand cmd,
	Object value,
	int index
)
Visual C++
public:
virtual void Set(
	IDbCommand^ cmd, 
	Object^ value, 
	int index
) override
JavaScript
function set(cmd, value, index);

Parameters

cmd
Type: System.Data..::.IDbCommand
The IDbCommand to put the value into.
value
Type: System..::.Object
The Type that contains the value.
index
Type: System..::.Int32
The index of the IDbDataParameter to start writing the value to.

Remarks

This uses the Set(IDbCommand, Object, Int32) method of the String object to do the work.

See Also