Class: OCI8::CLOB
Constant Summary
Instance Method Summary (collapse)
-
- (OCI8::CLOB) initialize(conn, contents = nil)
constructor
Creates a temporary CLOB when contents is not nil.
Methods inherited from LOB
#available?, #chunk_size, #close, #eof?, #pos, #read, #rewind, #seek, #size, #size=, #truncate, #write
Constructor Details
- (OCI8::CLOB) initialize(conn, contents = nil)
Creates a temporary CLOB when contents is not nil. Otherwise, it creates an uninitialized lob, which is used internally to fetch CLOB column data.
|
|
# File 'ext/oci8/lob.c'
static VALUE oci8_clob_initialize(int argc, VALUE *argv, VALUE self)
{
oci8_lob_do_initialize(argc, argv, self, SQLCS_IMPLICIT, OCI_TEMP_CLOB);
return Qnil;
}
|