BlobType
Overview
The BlobType enumeration denotes the exact type of the BLOB (Binary Large OBject) datatable field.
The BlobType data type and properties of the BlobType type aren't used by the Data Abstract for Java and were added for compatibility purposes.
Location
- Reference: com.remobjects.dataabstract.jar
- Package: com.remobjects.dataabstract.schema
Value | Description |
---|---|
Blob | The field is a BLOB and contains generic binary data, so its value can be accessed as array of bytes |
Memo | The field is a BLOB and contains text data, so its value can be accessed as String |
OraBlob | The field is a BLOB and contains generic binary data, so its value can be accessed as array of bytes |
OraClob | The field is a BLOB and contains text data, so its value can be accessed as String |
Timestamp | The field is a BLOB and contains generic binary data, so its value can be accessed as array of bytes |
Unknown | Default walue. The field is not a BLOB |