cubrid_set_drop

(PECL CUBRID >= 8.3.0) Delete an element from set type column using OID bool cubrid_set_drop ( resource $conn_identifier, string $oid, string $attr_name, string $set_element ) The cubrid_set_drop() function is used to delete an element that you request from the given set type (set, multiset) attribute of the database. Parameters: conn_identifier Connection identifier.

cubrid_set_query_timeout

(PECL CUBRID >= 8.4.1) Set the timeout time of query execution bool cubrid_set_query_timeout ( resource $req_identifier, int $timeout ) The cubrid_set_query_timeout() function is used to set the timeout time of query execution. Parameters: req_identifier Request identifier. timeout Timeout time, unit of msec. Returns:

cubrid_version

(PECL CUBRID >= 8.3.0) Get the CUBRID PHP module's version string cubrid_version ( void ) The cubrid_version() function is used to get the CUBRID PHP module's version. Returns: Version information (eg. "8.3.1.0001"). Examples: cubrid_version() example <?php printf("%-30s %s\n", "CUBRID PHP Version:", cubrid_version(

cubrid_seq_drop

(PECL CUBRID >= 8.3.0) Delete an element from sequence type column using OID bool cubrid_seq_drop ( resource $conn_identifier, string $oid, string $attr_name, int $index ) The cubrid_seq_drop() function is used to delete an element you request from the given sequence type attribute in the database. Parameters: conn_identifier Connection identifier.

cubrid_seq_put

(PECL CUBRID >= 8.3.0) Update the element value of sequence type column using OID bool cubrid_seq_put ( resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element ) The cubrid_seq_put() function is used to update the content of the requested element in a sequent type attribute using OID. Parameters: conn_identifier Connection identifier.

cubrid_set_autocommit

(PECL CUBRID >= 8.4.0) Set autocommit mode of the connection bool cubrid_set_autocommit ( resource $conn_identifier, bool $mode ) The cubrid_set_autocommit() function is used to set the CUBRID database auto-commit mode of the current database connection. In CUBRID PHP, auto-commit mode is disabled by default for transaction management. When auto-commit mode is truned from off to on, any pending work is automatically com

cubrid_put

(PECL CUBRID >= 8.3.0) Update a column using OID int cubrid_put ( resource $conn_identifier, string $oid [, string $attr ], mixed $value ) The cubrid_put() function is used to update an attribute of the instance of the given oid. You can update single attribute by using string data type to set attr. In such case, you can use integer, floating point or string type data for the value argument. To update multiple number of

cubrid_seq_insert

(PECL CUBRID >= 8.3.0) Insert an element to a sequence type column using OID bool cubrid_seq_insert ( resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element ) The cubrid_col_insert() function is used to insert an element to a sequence type attribute in a requested location. Parameters: conn_identifier Connection identifier.

cubrid_schema

(PECL CUBRID >= 8.3.0) Get the requested schema information array cubrid_schema ( resource $conn_identifier, int $schema_type [, string $class_name [, string $attr_name ]] ) The cubrid_schema() function is used to get the requested schema information from database. You have to designate class_name, if you want to get information on certain class, attr_name, if you want to get information on certain attribute (can be used

cubrid_set_add

(PECL CUBRID >= 8.3.0) Insert a single element to set type column using OID bool cubrid_set_add ( resource $conn_identifier, string $oid, string $attr_name, string $set_element ) The cubrid_set_add() function is used to insert a single element to a set type attribute (set, multiset, sequence) you requested. Parameters: conn_identifier Connection identifier.