/PHP-8.1/ext/mysqli/tests/ |
H A D | mysqli_fetch_all.phpt | 60 printf("[010] Cannot run query, [%d] %s\n", mysqli_errno($link), $mysqli_error($link)); 67 printf("[018] Cannot run query, [%d] %s\n",
|
H A D | mysqli_fetch_array.phpt | 36 printf("[010] Cannot run query, [%d] %s\n", mysqli_errno($link), $mysqli_error($link)); 43 printf("[012] Cannot run query, [%d] %s\n",
|
H A D | mysqli_class_mysqli_interface.phpt | 44 'query' => true,
|
H A D | mysqli_debug_mysqlnd_control_string.phpt | 67 printf("[015] SELECT query cannot be found in trace. Trace contents seems wrong.\n");
|
H A D | mysqli_class_mysqli_properties_no_conn.phpt | 227 $mysqli->query("SELECT * FROM test");
|
H A D | mysqli_report.phpt | 213 - query must cause the warning on all MySQL versions
|
H A D | mysqli_stmt_big_prepare.phpt | 35 /* execute query */
|
/PHP-8.1/ext/odbc/ |
H A D | odbc_arginfo.h | 19 ZEND_ARG_TYPE_INFO(0, query, IS_STRING, 0)
|
H A D | php_odbc.c | 867 char *query; in PHP_FUNCTION() local 877 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &pv_conn, &query, &query_len) == FAILURE) { in PHP_FUNCTION() 919 rc = SQLPrepare(result->stmt, (SQLCHAR *) query, SQL_NTS); in PHP_FUNCTION() 1271 char *query; in PHP_FUNCTION() local 1280 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rs", &pv_conn, &query, &query_len) == FAILURE) { in PHP_FUNCTION() 1319 rc = SQLExecDirect(result->stmt, (SQLCHAR *) query, SQL_NTS); in PHP_FUNCTION()
|
/PHP-8.1/ext/pdo_odbc/tests/ |
H A D | long_columns.phpt | 81 foreach ($db->query('SELECT id, data from TEST ORDER BY LEN(data) ASC') as $row) {
|
/PHP-8.1/ext/standard/ |
H A D | http_fopen_wrapper.c | 404 if (resource->query) { in php_stream_url_wrap_http_ex() 406 smart_str_appends(&req_buf, ZSTR_VAL(resource->query)); in php_stream_url_wrap_http_ex()
|
/PHP-8.1/ext/dom/ |
H A D | php_dom.stub.php | 691 …public function query(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = tru… function in DOMXPath
|
H A D | xpath.c | 470 PHP_METHOD(DOMXPath, query) in PHP_METHOD() argument
|
H A D | php_dom_arginfo.h | 636 ZEND_METHOD(DOMXPath, query); 902 ZEND_ME(DOMXPath, query, arginfo_class_DOMXPath_query, ZEND_ACC_PUBLIC)
|
/PHP-8.1/ext/oci8/ |
H A D | oci8_interface.c | 1591 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()
|
H A D | php_oci8_int.h | 485 php_oci_statement *php_oci_statement_create(php_oci_connection *connection, char *query, int query_…
|
/PHP-8.1/ |
H A D | UPGRADING.INTERNALS | 84 char* + size_t pair the query string. Similarly, the query_string and
|
/PHP-8.1/docs/ |
H A D | streams.md | 214 In situations where this is not desirable, you should query the stream to see if 344 /* initialize the connection, and run a query, using the fields in state to
|
/PHP-8.1/ext/mysqli/ |
H A D | mysqli.c | 177 if (stmt->query) { in php_clear_stmt_bind() 178 efree(stmt->query); in php_clear_stmt_bind()
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_ps.c | 372 MYSQLND_METHOD(mysqlnd_stmt, prepare)(MYSQLND_STMT * const s, const char * const query, const size_… in MYSQLND_METHOD() 382 DBG_INF_FMT("query=%s", query); in MYSQLND_METHOD() 417 const MYSQLND_CSTRING query_string = {query, query_len}; in MYSQLND_METHOD()
|
H A D | mysqlnd.h | 109 #define mysqlnd_query(conn, query_str, query_len) ((conn)->data)->m->query((conn)->data, (query_st…
|
/PHP-8.1/ext/filter/ |
H A D | logical_filters.c | 637 …ATH_REQUIRED) && url->path == NULL) || ((flags & FILTER_FLAG_QUERY_REQUIRED) && url->query == NULL) in php_filter_validate_url()
|
/PHP-8.1/ext/simplexml/ |
H A D | simplexml.c | 1265 char *query; in PHP_METHOD() local 1274 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &query, &query_len) == FAILURE) { in PHP_METHOD() 1305 retval = xmlXPathEval((xmlChar *)query, sxe->xpath); in PHP_METHOD()
|
/PHP-8.1/build/ |
H A D | gen_stub.php | 2081 private function createIncludeElement(DOMDocument $doc, string $query): DOMElement argument 2085 $attr->value = $query;
|
/PHP-8.1/ext/pdo/ |
H A D | pdo_dbh.c | 1087 PHP_METHOD(PDO, query) in PHP_METHOD() argument
|