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_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_db_parameter

(PECL CUBRID >= 8.4.0) Sets the CUBRID database parameters bool cubrid_set_db_parameter ( resource $conn_identifier, int $param_type, int $param_value ) The cubrid_set_db_parameter() function is used to set the CUBRID database parameters. It can set the following CUBRID database parameters: PARAM_ISOLATION_LEVEL PARAM_LOCK_TIMEOUT Note: The auto-commit mode can be set by using cubrid_set_autocommit().

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_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.

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_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_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_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_rollback

(PECL CUBRID >= 8.3.0) Roll back a transaction bool cubrid_rollback ( resource $conn_identifier ) The cubrid_rollback() function executes rollback on the transaction pointed by conn_identifier, currently in progress. Connection to server is closed after calling cubrid_rollback(). Connection handle, however, is still valid. Parameters: conn_identifier Connection identi