Home
last modified time | relevance | path

Searched refs:table (Results 176 – 200 of 531) sorted by relevance

12345678910>>...22

/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt49 printf("... table created\n");
123 ... table created
128 ... table created
H A Dmysqli_rollback.phpt29 … printf("[007] Cannot create test table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
42 printf("[12] Expecting 0 rows in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_fetch_row.phpt11 require 'table.inc';
H A Dmysqli_commit.phpt29 … printf("[007] Cannot create test table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
45 printf("[12] Expecting 1 row in table test, found %d rows\n", $tmp['num']);
H A Dmysqli_stmt_close.phpt11 require 'table.inc';
56 require 'table.inc';
H A Dmysqli_fetch_lengths.phpt11 require 'table.inc';
H A Dmysqli_fetch_array_assoc.phpt11 require 'table.inc';
H A Dmysqli_fetch_lengths_oo.phpt11 require 'table.inc';
H A Dmysqli_store_result_buffered_c.phpt11 require 'table.inc';
H A Dmysqli_prepare.phpt11 require 'table.inc';
108 printf("[c002] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
111 printf("[c003] Cannot drop table, [%d] %s\n", mysqli_errno($link), mysqli_error($link));
H A Dmysqli_stmt_bind_result_format.phpt18 printf("[%03d] Cannot drop table test, [%d] %s\n",
27 printf("[%03d] Cannot create table test, [%d] %s\n",
148 /* select from dual - pseudo table */
157 require_once 'table.inc';
159 /* select from existing table */
164 /* create new table and select from it */
/php-src/ext/standard/tests/strings/
H A Dbug61116.phpt23 Parameter #0 [ <optional> int $table = HTML_SPECIALCHARS ]
/php-src/ext/sqlite3/tests/
H A Dsqlite3_prepare_faultystmt.phpt19 Warning: SQLite3::prepare(): Unable to prepare statement: no such table: bar in %s on line %d
H A Dsqlite3_02_create.phpt28 Warning: SQLite3::exec(): table test already exists in %s on line %d
H A Dsqlite3_rename_column.phpt25 $db->exec('alter table tbl rename column orig to changed');
/php-src/sapi/fpm/tests/
H A Dsetsofib.phpt32 $tester->expectLogError('Invalid routing table id 68000, max is 1');
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_closecursor_error.phpt31 Warning: PDOStatement::closeCursor(): SQLSTATE[42S02]: Base table or view not found: 1146 Table '%s…
H A Dpdo_mysql_stmt_bindvalue.phpt15 $table = 'pdo_mysql_stmt_bindvalue';
16 MySQLPDOTest::createTestTable($table, $db);
25 $stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? ORDER BY id ASC LIMIT 2");
96 …$stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? AND id <= ? ORDER BY id ASC LIMI…
125 …$stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? AND id <= ? ORDER BY id ASC LIMI…
165 $stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? ORDER BY id ASC LIMIT 2");
236 …$stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? AND id <= ? ORDER BY id ASC LIMI…
265 …$stmt = $db->prepare("SELECT id, label FROM {$table} WHERE id > ? AND id <= ? ORDER BY id ASC LIMI…
/php-src/ext/mysqlnd/
H A Dmysqlnd_result_meta.c169 if (orig_fields[i].table && orig_fields[i].table != mysqlnd_empty_string) { in MYSQLND_METHOD()
170 new_fields[i].table = new_fields[i].root + in MYSQLND_METHOD()
171 (orig_fields[i].table - orig_fields[i].root); in MYSQLND_METHOD()
/php-src/ext/pdo_mysql/tests/inc/
H A Dmysql_pdo_test.inc38 static function createTestTable($table, $db, $engine = null) {
42 $db->exec("DROP TABLE IF EXISTS {$table}");
43 … $db->exec("CREATE TABLE {$table} (id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE={$engine}");
44 …$db->exec("INSERT INTO {$table} (id, label) VALUES (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd'), (5, 'e'…
/php-src/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_transaction.phpt29 Warning: PDO::query(): SQLSTATE[HY000]: General error: 6 database table is locked in %s on line %d
/php-src/Zend/
H A Dzend_iterators.h56 HashTable *(*get_gc)(zend_object_iterator *iter, zval **table, int *n);
/php-src/ext/pdo_firebird/tests/
H A Dbug_72931.phpt15 $dbh->exec('recreate table test72931 (id integer)');
/php-src/Zend/asm/
H A Dmake_x86_64_ms_pe_masm.asm89 ; generate function table entry in .pdata and unwind information in
/php-src/ext/pgsql/
H A Dpgsql.c5254 const char *dot = memchr(ZSTR_VAL(table), '.', ZSTR_LEN(table)); in build_tablename()
5255 size_t len = dot ? dot - ZSTR_VAL(table) : ZSTR_LEN(table); in build_tablename()
5292 ZEND_ASSERT(table != NULL); in php_pgsql_insert()
5400 zend_string *table; in PHP_FUNCTION() local
5413 if (ZSTR_LEN(table) == 0) { in PHP_FUNCTION()
5557 ZEND_ASSERT(table != NULL); in php_pgsql_update()
5621 zend_string *table; in PHP_FUNCTION() local
5632 if (ZSTR_LEN(table) == 0) { in PHP_FUNCTION()
5668 ZEND_ASSERT(table != NULL); in php_pgsql_delete()
5718 zend_string *table; in PHP_FUNCTION() local
[all …]

Completed in 73 milliseconds

12345678910>>...22