|
cubrid_query(PECL CUBRID >= 8.3.1) cubrid_query — 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. Список параметров
Возвращаемые значенияFor SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset, cubrid_query() returns a resource on success, or FALSE on error. For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, cubrid_query() returns TRUE on success or FALSE on error. The returned result resource should be passed to cubrid_fetch_array(), and other functions for dealing with result tables, to access the returned data. Use cubrid_num_rows() to find out how many rows were returned for a SELECT statement or cubrid_affected_rows() to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPDATE statement. cubrid_query() will also fail and return FALSE if the user does not have permission to access the table(s) referenced by the query. Примеры
Пример #1 Invalid Query The following query is syntactically invalid, so cubrid_query() fails and returns FALSE.
<?php
Пример #2 Valid Query The following query is valid, so cubrid_query() returns a resource.
<?php Смотрите также
|
|