cubrid_column_types

(PECL CUBRID >= 8.3.0) Get column types in result array cubrid_column_types ( resource $req_identifier ) The cubrid_column_types() function gets column types of query results by using req_identifier. Parameters: req_identifier Request identifier. Returns: Array of string values containing the column names, when process is successful. FALSE, wh

cubrid_column_names

(PECL CUBRID >= 8.3.0) Get the column names in result array cubrid_column_names ( resource $req_identifier ) The cubrid_column_names() function is used to get the column names of the query result by using req_identifier. Parameters: req_identifier Request identifier. Returns: Array of string values containing the column names, when process is su

cubrid_col_size

(PECL CUBRID >= 8.3.0) Get the number of elements in collection type column using OID int cubrid_col_size ( resource $conn_identifier, string $oid, string $attr_name ) The cubrid_col_size() function is used to get the number of elements in a collection type (set, multiset, sequence) attribute. Parameters: conn_identifier Connection identifier. oid

cubrid_col_get

(PECL CUBRID >= 8.3.0) Get contents of collection type column using OID array cubrid_col_get ( resource $conn_identifier, string $oid, string $attr_name ) The cubrid_col_get() function is used to get contents of the elements of the collection type (set, multiset, sequence) attribute you requested as an array. Parameters: conn_identifier Connection identifier.

cubrid_close_request

(PECL CUBRID >= 8.3.0) Close the request handle bool cubrid_close_request ( resource $req_identifier ) The cubrid_close_request() function closes the request handle given by the req_identifier argument, and releases the memory region related to the handle. It is an alias of cubrid_close_prepare(). Parameters: req_identifier Request identifier. Return

cubrid_close_prepare

(PECL CUBRID >= 8.3.0) Close the request handle bool cubrid_close_prepare ( resource $req_identifier ) The cubrid_close_prepare() function closes the request handle given by the req_identifier argument, and releases the memory region related to the handle. It is an alias of cubrid_close_request(). Parameters: req_identifier Request identifier. Return

cubrid_bind

(PECL CUBRID >= 8.3.0) Bind variables to a prepared statement as parameters bool cubrid_bind ( resource $req_identifier, int $bind_index, mixed $bind_value [, string $bind_value_type ] ) The cubrid_bind() function is used to bind values to a corresponding named or question mark placeholder in the SQL statement that was passed to cubrid_prepare(). If bind_value_type is not given, string will be the default. Note: If th

PDOStatement::setFetchMode

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.0) Set the default fetch mode for this statement public bool PDOStatement::setFetchMode ( int $mode ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_COLUMN , int $colno ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_CLASS , string $classname , array $ctorargs ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_INTO , object $object )

PDOStatement::setAttribute

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.0) Set a statement attribute public bool PDOStatement::setAttribute ( int $attribute, mixed $value ) Sets an attribute on the statement. Currently, no generic attributes are set but only driver specific: PDO::ATTR_CURSOR_NAME (Firebird and ODBC specific): Set the name of cursor for UPDATE ... WHERE CURRENT OF. Returns: Returns TRUE on success or FALSE on failure.

PDOStatement::rowCount

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Returns the number of rows affected by the last SQL statement public int PDOStatement::rowCount ( void ) PDOStatement::rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement executed by the corresponding PDOStatement object. If the last SQL statement executed by the associated PDOStatement was a SELECT statement, some databases may r