Set a type name for specified type key and capacity

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

Syntax

Visual Basic (Declaration)
Public Sub Put ( _
	typecode As DbType, _
	capacity As Integer, _
	value As String _
)
C#
public void Put(
	DbType typecode,
	int capacity,
	string value
)
Visual C++
public:
void Put(
	DbType typecode, 
	int capacity, 
	String^ value
)
JavaScript
function put(typecode, capacity, value);

Parameters

typecode
Type: System.Data..::.DbType
the type key
capacity
Type: System..::.Int32
the (maximum) type size/length
value
Type: System..::.String
The associated name

See Also