Describes the details of a Binary with the information required to to generate an IDbDataParameter.

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

Syntax

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

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

Remarks

This can store the binary data that the IDbDataParameter can hold. If no value is provided for the length then the Driver is responsible for setting the properties on the IDbDataParameter correctly.

Inheritance Hierarchy

System..::.Object
  NHibernate.SqlTypes..::.SqlType
    NHibernate.SqlTypes..::.BinarySqlType
      NHibernate.SqlTypes..::.BinaryBlobSqlType

See Also