Home
last modified time | relevance | path

Searched refs:query (Results 376 – 400 of 491) sorted by relevance

1...<<11121314151617181920

/PHP-8.0/ext/sqlite3/tests/
H A Dsqlite3_08_udf.phpt27 $results = $db->query("SELECT my_udf_md5(id) FROM test ORDER BY id ASC");
H A Dsqlite3_11_numrows.phpt26 $results = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_19_columninfo.phpt19 $result = $db->query("SELECT * FROM test ORDER BY id ASC");
H A Dsqlite3_09_blob_bound_param.phpt30 $results = $db->query("SELECT id, quote(data) AS data FROM test ORDER BY id ASC");
/PHP-8.0/ext/pdo_mysql/tests/
H A Dbug_61411.phpt11 $row = $db->query('SELECT VERSION() as _version')->fetch(PDO::FETCH_ASSOC);
H A Dpdo_mysql_commit.phpt52 $stmt = $db->query('SELECT id, label FROM test WHERE id = 100');
73 $stmt = $db->query('SELECT id, label FROM test WHERE id = 100');
H A Dpdo_mysql_prepare_native_mixed_style.phpt20 $stmt = $db->query('DELETE FROM test');
/PHP-8.0/ext/pgsql/tests/
H A D23sync_query_params.phpt2 PostgreSQL sync query params
H A D25async_query_params.phpt2 PostgreSQL async query params
H A D30nb_async_query_params.phpt2 PostgreSQL non-blocking async query params
/PHP-8.0/ext/pdo_firebird/tests/
H A Dbug_53280.phpt2 PDO_Firebird: bug 53280 segfaults if query column count is less than param count
/PHP-8.0/ext/mysqli/
H A Dmysqli_api.c118 char *query; in mysqli_commit_or_rollback_libmysql() local
122 query_len = spprintf(&query, 0, in mysqli_commit_or_rollback_libmysql()
130 ret = mysql_real_query(conn, query, query_len); in mysqli_commit_or_rollback_libmysql()
131 efree(query); in mysqli_commit_or_rollback_libmysql()
1765 char *query = NULL; local
1819 stmt->query = (char *)emalloc(query_len + 1);
1820 memcpy(stmt->query, query, query_len);
1821 stmt->query[query_len] = '\0';
1855 char *query = NULL; local
1865 if (mysql_real_query(mysql->mysql, query, query_len)) {
[all …]
H A Dmysqli_priv.h64 extern void php_mysqli_report_index(const char *query, unsigned int status);
/PHP-8.0/ext/pdo/tests/
H A Dpdo_020.phpt24 $stmt = $db->query($sql);
H A Dbug_52098.phpt41 $r = $db->query('SELECT * FROM test');
H A Dpdo_019.phpt24 var_dump($db->query('SELECT COUNT(*) FROM test')->fetchColumn());
H A Dpdo_024.phpt39 var_dump($db->query('select name from test where id=0')->fetchColumn());
/PHP-8.0/ext/pdo/
H A Dpdo_sql_parser.re146 /* did the query make sense to me? */
180 /* query matches native syntax */
192 * We we pretend that the query was positional even if
202 /* query generation */
334 /* and build the query */
/PHP-8.0/ext/mysqli/tests/
H A Dbug49027.phpt21 var_dump($link->query("SELECT 42")->fetch_row());
H A Dconnect.inc103 if (($res = $link->query("SHOW VARIABLES LIKE 'have_innodb'")) &&
112 if ($res = $link->query("SHOW ENGINES")) {
H A Dmysqli_stmt_num_rows.phpt17 function func_test_mysqli_stmt_num_rows($stmt, $query, $expected, $offset) {
19 if (!mysqli_stmt_prepare($stmt, $query)) {
H A D065.phpt35 if ($res = $mysql->query("SHOW CHARACTER SET LIKE 'gbk'")) {
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_fread_1.phpt36 $s = $dbh->query("select data from pdo_oci_fread_tab where id = 1");
/PHP-8.0/ext/pdo_pgsql/
H A Dphp_pdo_pgsql_int.h64 char *query; member
H A Dpgsql_statement.c102 if (S->query) { in pgsql_stmt_dtor()
103 efree(S->query); in pgsql_stmt_dtor()
104 S->query = NULL; in pgsql_stmt_dtor()
182 S->result = PQprepare(H->server, S->stmt_name, S->query, in pgsql_stmt_execute()
227 S->result = PQexecParams(H->server, S->query, in pgsql_stmt_execute()

Completed in 35 milliseconds

1...<<11121314151617181920