This is the base class that adds information to the DbType for the IDriver and Dialect to use.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class SqlType
C#
[SerializableAttribute]
public class SqlType
Visual C++
[SerializableAttribute]
public ref class SqlType
JavaScript
NHibernate.SqlTypes.SqlType = function();

Type.createClass(
	'NHibernate.SqlTypes.SqlType');

Remarks

The IDriver uses the SqlType to get enough information to create an IDbDataParameter.

The Dialect use the SqlType to convert the DbType to the appropriate sql type for SchemaExport.

Inheritance Hierarchy

See Also