Maps a String Property to an String column that can store a CLOB.

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

Syntax

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

Type.createClass(
	'NHibernate.Type.StringClobType',
	NHibernate.Type.StringType);

Remarks

This is only needed by DataProviders (SqlClient) that need to specify a Size for the IDbDataParameter. Most DataProvider(Oralce) don't need to set the Size so a StringType would work just fine.

Inheritance Hierarchy

See Also