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

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

Syntax

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

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