OCI-Lob::writeToFile

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Alias of OCI-Lob::export() This function is an alias of: OCI-Lob::export().

OCI-Lob::writeTemporary

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Writes a temporary large object bool OCI-Lob::writeTemporary ( string $data [, int $lob_type = OCI_TEMP_CLOB ] ) Creates a temporary large object and writes data to it. You should use OCI-Lob::close when you are done with this object. Parameters: data The data to write. lob_type Can be one of the

OCI-Lob::write

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Writes data to the large object int OCI-Lob::write ( string $data [, int $length ] ) Writes data from the parameter data into the current position of LOB's internal pointer. Parameters: data The data to write in the LOB. length If this parameter is given, writing will stop after length bytes have be

OCI-Lob::truncate

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Truncates large object bool OCI-Lob::truncate ([ int $length = 0 ] ) Truncates the LOB. Parameters: length If provided, this method will truncate the LOB to length bytes. Otherwise, it will completely purge the LOB. Returns: Returns TRUE on success or FALSE on failure.

OCI-Lob::tell

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the current position of internal pointer of large object int OCI-Lob::tell ( void ) Gets the current position of a LOB's internal pointer. Returns: Returns current position of a LOB's internal pointer or FALSE if an error occurred. See also: OCI-Lob::rewind - Lob::re

OCI-Lob::size

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns size of large object int OCI-Lob::size ( void ) Gets the size of the large object. Returns: Returns length of large object value or FALSE on failure. Empty objects have zero length.

OCI-Lob::setBuffering

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Changes current state of buffering for the large object bool OCI-Lob::setBuffering ( bool $on_off ) Sets the buffering for the large object, depending on the value of the on_off parameter. Use of this function may provide performance improvements by buffering small reads and writes of LOBs by reducing the number of network round-trips and LOB versions. OCI-Lob::flush() should be used t

OCI-Lob::seek

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Sets the internal pointer of the large object bool OCI-Lob::seek ( int $offset [, int $whence = OCI_SEEK_SET ] ) Sets the internal pointer of the large object. Parameters: offset Indicates the amount of bytes, on which internal pointer should be moved from the position, pointed by whence. whence Ma

OCI-Lob::saveFile

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Alias of OCI-Lob::import() This function is an alias of: OCI-Lob::import().

OCI-Lob::save

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Saves data to the large object bool OCI-Lob::save ( string $data [, int $offset ] ) Saves data to the large object. Parameters: data The data to be saved. offset Can be used to indicate offset from the beginning of the large object. Returns: Returns TRUE on success or FALSE