Home
last modified time | relevance | path

Searched refs:exec (Results 176 – 200 of 332) sorted by relevance

12345678910>>...14

/PHP-8.0/ext/sqlite3/tests/
H A Dsqlite3_40_setauthorizer.phpt33 var_dump($db->exec('CREATE TABLE test (a); INSERT INTO test VALUES (42);'));
45 var_dump($db->exec('SELECT * FROM test WHERE a = 42;'));
46 var_dump($db->exec('DROP TABLE test;'));
H A Dbug76665.phpt10 $db->exec("CREATE TABLE foo (bar REAL)");
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_blobs.phpt27 $db->exec('DROP TABLE IF EXISTS test');
28 …$db->exec(sprintf('CREATE TABLE test(id INT, label %s) ENGINE=%s', $sql_type, PDO_MYSQL_TEST_ENGIN…
95 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_stmt_fetch_non_select.phpt73 if ($db->exec("PREPARE mystmt FROM 'DESCRIBE test id'")) {
75 $db->exec('DEALLOCATE PREPARE mystmt');
107 if ($db->exec("PREPARE mystmt FROM 'SHOW ENGINES'")) {
109 $db->exec('DEALLOCATE PREPARE mystmt');
140 if ($db->exec("PREPARE mystmt FROM 'EXPLAIN SELECT id FROM test'")) {
142 $db->exec('DEALLOCATE PREPARE mystmt');
H A Dbug_33689.phpt16 $db->exec('CREATE TABLE test (bar INT NOT NULL)');
17 $db->exec('INSERT INTO test VALUES(1)');
H A Dbug_50323.phpt43 if (1 === @$db->exec('CREATE DATABASE `crazy;dbname`')) {
57 @$db->exec('DROP DATABASE IF EXISTS `crazy;dbname`');
H A Dbug_41125.phpt24 $db->exec("DROP TABLE IF EXISTS test");
40 $db->exec("DROP TABLE IF EXISTS test");
H A Dpdo_mysql_attr_oracle_nulls.phpt51 if ($have_procedures && (false !== $db->exec('DROP PROCEDURE IF EXISTS p')) &&
52 …(false !== $db->exec("CREATE PROCEDURE p() BEGIN SELECT NULL as z, '' AS a, ' ' AS b, TRIM(' ') as…
68 @$db->exec('DROP PROCEDURE IF EXISTS p');
H A Dmysql_pdo_test.inc39 $db->exec('DROP TABLE IF EXISTS test');
40 $db->exec('CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine);
41 …$db->exec("INSERT INTO test(id, label) VALUES (1, 'a'), (2, 'b'), (3, 'c'), (4, 'd'), (5, 'e'), (6…
173 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_stmt_blobfromsteam.phpt55 $db->exec('DROP TABLE IF EXISTS test');
57 $db->exec($sql);
97 $db->exec('DELETE FROM test');
142 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_types_zerofill.phpt2 MySQL PDO->exec(), native types - ZEROFILL
15 $db->exec('DROP TABLE IF EXISTS test');
17 @$db->exec($sql);
125 $db->exec('DROP TABLE IF EXISTS test');
/PHP-8.0/ext/standard/tests/file/
H A Dbug41874_3.phpt2 bug #41874 (Separate STDOUT and STDERR in exec functions)
/PHP-8.0/ext/pdo_pgsql/tests/
H A Dbug_33876.phpt16 $db->exec("SET LC_MESSAGES='C'");
17 $db->exec('CREATE TABLE test (foo varchar(5) NOT NULL, bar bool NOT NULL)');
18 $db->exec("INSERT INTO test VALUES('false','f')");
19 $db->exec("INSERT INTO test VALUES('true', 't')");
/PHP-8.0/ext/pdo/tests/
H A Dbug_65946.phpt17 $db->exec('CREATE TABLE test(id int)');
18 $db->exec('INSERT INTO test VALUES(1)');
H A Dbug_71885.phpt21 $db->exec("CREATE TABLE test (a int)");
26 $db->exec($sql);
H A Dpdo_016.phpt22 $db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
23 $db->exec('INSERT INTO test VALUES(0, \'String0\')');
24 $db->exec('INSERT INTO test VALUES(1, \'String1\')');
25 $db->exec('INSERT INTO test VALUES(2, \'String2\')');
H A Dpdo_016a.phpt22 $db->exec('CREATE TABLE test(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
23 $db->exec('INSERT INTO test VALUES(0, \'String0\')');
24 $db->exec('INSERT INTO test VALUES(1, \'String1\')');
25 $db->exec('INSERT INTO test VALUES(2, \'String2\')');
H A Dbug_34630.phpt21 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val BLOB)');
23 $db->exec('CREATE TABLE test (id int NOT NULL PRIMARY KEY, val VARCHAR(256))');
H A Dpdo_034.phpt17 $db->exec("CREATE TABLE test (a varchar(100), b varchar(100), c varchar(100))");
20 $db->exec("INSERT INTO test (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
H A Dbug_43130.phpt25 $db->exec("CREATE TABLE test (a varchar(100), b varchar(100), c varchar(100))");
28 $db->exec("INSERT INTO test (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
/PHP-8.0/ext/pdo_oci/tests/
H A Dbug46274.phpt19 $db->exec("DROP TABLE test_one_blob");
56 $db->exec("DROP TABLE test_one_blob");
H A Dbug46274_2.phpt19 $db->exec("DROP TABLE test_one_blob");
60 $db->exec("DROP TABLE test_one_blob");
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_prompt.c404 PHPDBG_COMMAND(exec) /* {{{ */ in PHPDBG_COMMAND() argument
420 if (PHPDBG_G(exec)) { in PHPDBG_COMMAND()
422 free(PHPDBG_G(exec)); in PHPDBG_COMMAND()
423 PHPDBG_G(exec) = NULL; in PHPDBG_COMMAND()
432 PHPDBG_G(exec) = res; in PHPDBG_COMMAND()
529 if (PHPDBG_G(exec)) { in phpdbg_compile_stdin()
530 free(PHPDBG_G(exec)); in phpdbg_compile_stdin()
564 if (!PHPDBG_G(exec)) { in phpdbg_compile()
1121 …phpdbg_writeln("info", "context=\"%s\"", "Exec %s", PHPDBG_G(exec) ? PHPDBG_G(exec) : "none"… in PHPDBG_COMMAND()
1156 if (PHPDBG_G(exec)) { in PHPDBG_COMMAND()
[all …]
/PHP-8.0/ext/pdo_dblib/tests/
H A Dbatch_stmt_ins_exec.phpt27 "exec php_pdo_exec_select_proc; " .
35 // check results from the exec
/PHP-8.0/ext/pdo/
H A Dpdo_dbh.stub.php22 public function exec(string $statement) {} function in PDO

Completed in 40 milliseconds

12345678910>>...14