cubrid_move_cursor

(PECL CUBRID >= 8.3.0) Move the cursor in the result int cubrid_move_cursor ( resource $req_identifier, int $offset [, int $origin = CUBRID_CURSOR_CURRENT ] ) The cubrid_move_cursor() function is used to move the current cursor location of req_identifier by the value set in the offset argument, to the direction set in the origin argument. To set the origin argument, you can use CUBRID_CURSOR_FIRST for the first part of t

cubrid_lob2_tell

(PECL CUBRID >= 8.4.1) Tell the cursor position of the LOB object. int cubrid_lob2_tell ( resource $lob_identifier ) The cubrid_lob2_tell() function is used to tell the cursor position of the LOB object. Parameters: lob_identifier Lob identifier as a result of cubrid_lob2_new() or get from the result set. Returns: It will return the cursor posit

cubrid_lob2_tell64

(PECL CUBRID >= 8.4.1) Tell the cursor position of the LOB object. string cubrid_lob2_tell64 ( resource $lob_identifier ) The cubrid_lob2_tell64() function is used to tell the cursor position of the LOB object. If the size of a lob object is larger than an integer data can be stored, you can use this function and it will return the position information as a string. Parameters: lob_

cubrid_lob2_size64

(PECL CUBRID >= 8.4.1) Get a lob object's size. string cubrid_lob2_size64 ( resource $lob_identifier ) The cubrid_lob2_size64() function is used to get the size of a lob object. If the size of a lob object is larger than an integer data can be stored, you can use this function and it will return the size as a string. Parameters: lob_identifier Lob identifier as a result

cubrid_lob2_size

(PECL CUBRID >= 8.4.1) Get a lob object's size. int cubrid_lob2_size ( resource $lob_identifier ) The cubrid_lob2_size() function is used to get the size of a lob object. Parameters: lob_identifier Lob identifier as a result of cubrid_lob2_new() or get from the result set. Returns: It will return the size of the LOB object when it processes succ

cubrid_lob2_seek64

(PECL CUBRID >= 8.4.1) Move the cursor of a lob object. bool cubrid_lob2_seek64 ( resource $lob_identifier, string $offset [, int $origin = CUBRID_CURSOR_CURRENT ] ) The cubrid_lob2_seek64() function is used to move the cursor position of a lob object by the value set in the offset argument, to the direction set in the origin argument. If the offset you want to move is larger than an integer data can be stored, you can u

cubrid_lob2_seek

(PECL CUBRID >= 8.4.1) Move the cursor of a lob object. bool cubrid_lob2_seek ( resource $lob_identifier, int $offset [, int $origin = CUBRID_CURSOR_CURRENT ] ) The cubrid_lob2_seek() function is used to move the cursor position of a lob object by the value set in the offset argument, to the direction set in the origin argument. To set the origin argument, you can use CUBRID_CURSOR_FIRST to set the cursor position movi

cubrid_lob2_export

(PECL CUBRID >= 8.4.1) Export the lob object to a file. bool cubrid_lob2_export ( resource $lob_identifier, string $file_name ) The cubrid_lob2_export() function is used to save the contents of BLOB/CLOB data to a file. To use this function, you must use cubrid_lob2_new() or fetch a lob object from CUBRID database first. If the file already exists, the operation will fail. This function will not influence the cursor posit

cubrid_lob2_new

(PECL CUBRID >= 8.4.1) Create a lob object. resource cubrid_lob2_new ([ resource $conn_identifier [, string $type = "BLOB" ]] ) The cubrid_lob2_new() function is used to create a lob object (both BLOB and CLOB). This function should be used before you bind a lob object. Parameters: conn_identifier Connection identifier. If the connection identifier is not specified, th

cubrid_lob2_read

(PECL CUBRID >= 8.4.1) Read from BLOB/CLOB data. string cubrid_lob2_read ( resource $lob_identifier, int $len ) The cubrid_lob2_read() function reads len bytes from the LOB data and returns the bytes read. Parameters: lob_identifier Lob identifier as a result of cubrid_lob2_new() or get from the result set. len Length from buffer you wa