cubrid_save_to_glo

(PECL CUBRID >= 8.3.0) Save requested file in a GLO instance int cubrid_save_to_glo ( resource $conn_identifier, string $oid, string $file_name ) The cubrid_save_to_glo() function is used to save requested file in a glo instance. Parameters: conn_identifier Connection identifier. oid Oid of the glo instance that you want to save a file

cubrid_new_glo

(PECL CUBRID >= 8.3.0) Create a glo instance string cubrid_new_glo ( resource $conn_identifier, string $class_name, string $file_name ) The cubrid_new_glo() function is used to create a glo instance in the requested class (glo class). The glo created is a LO type, and is stored in the file_name file. Parameters: conn_identifier Connection identifier.

cubrid_load_from_glo

(PECL CUBRID >= 8.3.0) Read data from a GLO instance and save it in a file int cubrid_load_from_glo ( resource $conn_identifier, string $oid, string $file_name ) The cubrid_load_from_glo() function is used to read a data from a glo instance, and saves it in a designated file. Parameters: conn_identifier Connection identifier. oid Oid of

cubrid_unbuffered_query

(PECL CUBRID >= 8.3.0) Perform a query without fetching the results into memory resource cubrid_unbuffered_query ( string $query [, resource $conn_identifier ] ) This function performs a query without waiting for that all query results have been complete. It will return when the results are being generated. Parameters: query A SQL query. conn_ident

cubrid_result

(PECL CUBRID >= 8.3.0) Return the value of a specific field in a specific row string cubrid_result ( resource $result, int $row [, mixed $field = 0 ] ) This function returns the value of a specific field in a specific row from a result set. Parameters: result result comes from a call to cubrid_execute() row The row number from the resu

cubrid_real_escape_string

(PECL CUBRID >= 8.3.0) Escape special characters in a string for use in an SQL statement string cubrid_real_escape_string ( string $unescaped_string [, resource $conn_identifier ] ) This function returns the escaped string version of the given string. It will escape the following characters: '. In general, single quotations are used to enclose character string. Double quotations may be used as well depending on the value

cubrid_query

(PECL CUBRID >= 8.3.1) Send a CUBRID query resource cubrid_query ( string $query [, resource $conn_identifier ] ) cubrid_query() sends a unique query (multiple queries are not supported) to the currently active database on the server that's associated with the specified conn_identifier. Parameters: query An SQL query Data inside the query should be properly escaped.

cubrid_ping

(PECL CUBRID >= 8.3.1) Ping a server connection or reconnect if there is no connection bool cubrid_ping ([ resource $conn_identifier ] ) Checks whether or not the connection to the server is working. Parameters: conn_identifier The CUBRID connection identifier. If the connection identifier is not specified, the last connection opened by cubrid_connect() is assumed.

cubrid_num_fields

(PECL CUBRID >= 8.3.0) Return the number of columns in the result set int cubrid_num_fields ( resource $result ) This function returns the number of columns in the result set, on success, or it returns FALSE on failure. Parameters: result result comes from a call to cubrid_execute(), cubrid_query() and cubrid_prepare() Returns: Number of columns

cubrid_list_dbs

(PECL CUBRID >= 8.3.0) Return an array with the list of all existing CUBRID databases array cubrid_list_dbs ([ resource $conn_identifier ] ) This function returns an array with the list of all existing Cubrid databases. Parameters: conn_identifier The CUBRID connection. Returns: An numeric array with all existing Cubrid databases; on success.