Initializes a new instance of the StringSqlType class.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	length As Integer _
)
C#
public StringSqlType(
	int length
)
Visual C++
public:
StringSqlType(
	int length
)
JavaScript
NHibernate.SqlTypes.StringSqlType = function(length);

Parameters

length
Type: System..::.Int32
The length of the string the IDbDataParameter should hold.

See Also