Home
last modified time | relevance | path

Searched refs:query (Results 451 – 475 of 491) sorted by relevance

1...<<11121314151617181920

/PHP-8.0/ext/pgsql/tests/
H A D03sync_query.phpt2 PostgreSQL sync query
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_select_db.phpt82 if (!$res = $link->query("SELECT id FROM test WHERE id = 1"))
H A Dbug49442.phpt81 /* bug happened during query processing */
H A Dmysqli_pconn_max_links.phpt88 printf("[003] Cannot run query on persistent connection of second DB user, [%d] %s\n",
161 printf("[013] Cannot run query on persistent connection of second DB user, [%d] %s\n",
H A Dmysqli_fetch_object_oo.phpt25 if (!$res = $mysqli->query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 5")) {
H A Dmysqli_query.phpt118 mysqli_query(): Argument #2 ($query) cannot be empty
H A Dmysqli_class_mysqli_result_interface.phpt14 $mysqli_result = $mysqli->query('SELECT * FROM test');
H A Dmysqli_fetch_array.phpt35 printf("[010] Cannot run query, [%d] %s\n", mysqli_errno($link), $mysqli_error($link));
42 printf("[012] Cannot run query, [%d] %s\n",
H A Dmysqli_fetch_all.phpt61 printf("[010] Cannot run query, [%d] %s\n", mysqli_errno($link), $mysqli_error($link));
68 printf("[018] Cannot run query, [%d] %s\n",
H A Dmysqli_class_mysqli_interface.phpt43 'query' => true,
/PHP-8.0/ext/mysqli/
H A Dphp_mysqli_structs.h78 char *query; member
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt10 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
H A Dpdo_mysql_stmt_bindparam.phpt62 /* NOTE: you cannot use PDO::query() with unbuffered, native PS - see extra test */
H A Dpdo_mysql_stmt_bindparam_types.phpt41 $stmt = $db->query('SELECT id, label FROM test');
/PHP-8.0/ext/dom/
H A Dphp_dom.stub.php426 …public function query(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = tru… function in DOMXPath
H A Dphp_dom_arginfo.h578 ZEND_METHOD(DOMXPath, query);
840 ZEND_ME(DOMXPath, query, arginfo_class_DOMXPath_query, ZEND_ACC_PUBLIC)
H A Dxpath.c475 PHP_METHOD(DOMXPath, query) in PHP_METHOD() argument
/PHP-8.0/ext/standard/
H A Durl_scanner_ex.re225 * When URL does not have path and query string add "/?".
228 if (!url_parts->path && !url_parts->query && !url_parts->fragment) {
263 if (url_parts->query) {
264 smart_str_appends(dest, ZSTR_VAL(url_parts->query));
H A Dhttp_fopen_wrapper.c406 if (resource->query) { in php_stream_url_wrap_http_ex()
408 smart_str_appends(&req_buf, ZSTR_VAL(resource->query)); in php_stream_url_wrap_http_ex()
/PHP-8.0/ext/oci8/
H A Doci8_statement.c48 php_oci_statement *php_oci_statement_create(php_oci_connection *connection, char *query, int query_… in php_oci_statement_create() argument
70 (text *)query, in php_oci_statement_create()
80 DTRACE_OCI8_SQLTEXT(connection, connection->client_id, statement, query); in php_oci_statement_create()
95 if (query && query_len) { in php_oci_statement_create()
97 memcpy(statement->last_query, query, query_len); in php_oci_statement_create()
H A Doci8_interface.c1591 char *query; in PHP_FUNCTION() local
1596 Z_PARAM_STRING(query, query_len) in PHP_FUNCTION()
1601 statement = php_oci_statement_create(connection, query, (int) query_len); in PHP_FUNCTION()
/PHP-8.0/ext/odbc/
H A Dodbc_arginfo.h19 ZEND_ARG_TYPE_INFO(0, query, IS_STRING, 0)
H A Dphp_odbc.c863 char *query; in PHP_FUNCTION() local
873 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &pv_conn, &query, &query_len) == FAILURE) { in PHP_FUNCTION()
915 rc = SQLPrepare(result->stmt, (SQLCHAR *) query, SQL_NTS); in PHP_FUNCTION()
1266 char *query; in PHP_FUNCTION() local
1275 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &pv_conn, &query, &query_len) == FAILURE) { in PHP_FUNCTION()
1314 rc = SQLExecDirect(result->stmt, (SQLCHAR *) query, SQL_NTS); in PHP_FUNCTION()
/PHP-8.0/ext/pdo_odbc/tests/
H A Dlong_columns.phpt80 foreach ($db->query('SELECT id, data from TEST ORDER BY LEN(data) ASC') as $row) {
/PHP-8.0/
H A DUPGRADING442 PDO::query(
448 connection, rather than an approximation maintained by PDO. If a query that
578 http://example.com/foo => query = null, fragment = null
579 http://example.com/foo? => query = "", fragment = null
580 http://example.com/foo# => query = null, fragment = ""
581 http://example.com/foo?# => query = "", fragment = ""
583 Previously all cases resulted in query and fragment being null.

Completed in 83 milliseconds

1...<<11121314151617181920