Get the type name specified type and size

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

Syntax

Visual Basic (Declaration)
Public Function Get ( _
	typecode As DbType, _
	size As Integer _
) As String
C#
public string Get(
	DbType typecode,
	int size
)
Visual C++
public:
String^ Get(
	DbType typecode, 
	int size
)
JavaScript
function get(typecode, size);

Parameters

typecode
Type: System.Data..::.DbType
the type key
size
Type: System..::.Int32
the (maximum) type size/length

Return Value

The associated name with smallest capacity >= size if available and the default type name otherwise

See Also