OracleLob.LobType Property

Definition

Gets a value that returns the LOB data type.

public:
 property System::Data::OracleClient::OracleType LobType { System::Data::OracleClient::OracleType get(); };
public System.Data.OracleClient.OracleType LobType { get; }
member this.LobType : System.Data.OracleClient.OracleType
Public ReadOnly Property LobType As OracleType

Property Value

One of the OracleTypeLOB data types.

Remarks

An OracleLob may be one of the following OracleType data types.

OracleType data type Description
Blob An Oracle BLOB data type that contains binary data with a maximum size of 4 gigabytes. This maps to an Array of type Byte.
Clob An Oracle CLOB data type that contains character data, based on the default character set on the server, with a maximum size of 4 gigabytes. This maps to String.
NClob An Oracle NCLOB data type that contains character data, based on the national character set on the server with a maximum size of 4 gigabytes. This maps to String.

Applies to