Home
last modified time | relevance | path

Searched refs:exec (Results 76 – 100 of 321) sorted by relevance

12345678910>>...13

/PHP-7.4/ext/sqlite3/tests/
H A Dsqlite3_14_querysingle.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_03_insert.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_23_escape_string.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", '" . SQLite3::escapeString…
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_06_prepared_stmt.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_07_prepared_stmt.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_08_udf.phpt17 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
20 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
21 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_11_numrows.phpt19 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
22 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
23 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_19_columninfo.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
H A Dsqlite3_bound_value_at_name.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
15 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
16 var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
/PHP-7.4/ext/curl/tests/
H A Dcurl_copy_handle_basic_005.phpt2 Test curl_copy_handle() after exec() with POST
14 echo '*** Test curl_copy_handle() after exec() with POST ***' . "\n";
37 *** Test curl_copy_handle() after exec() with POST ***
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug68199.phpt30 $db->exec("LISTEN notifies_phpt");
35 $db->exec("NOTIFY notifies_phpt, 'payload'");
44 $db->exec("NOTIFY notifies_phpt, 'payload'");
52 $db->exec("NOTIFY notifies_phpt, 'payload'");
60 $db->exec("NOTIFY notifies_phpt, 'payload'");
68 $db->exec("NOTIFY notifies_phpt, 'payload'");
H A Dbug61267.phpt2 PDO::exec() returns 0 when the statement is a SELECT.
16 $res = $db->exec('SELECT * from generate_series(1, 42);');
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug70018.phpt2 Bug #70018 (exec does not strip all whitespace)
16 exec(PHP_BINARY . " -n $test_fl", $output);
/PHP-7.4/ext/standard/tests/file/windows_links/
H A Dbug73962.phpt17 exec("mkdir " . $dirname, $output, $ret_val);
21 $ret = exec($mountvol . " " . $drive . " /L", $output, $ret_val);
22 exec("mklink /d mounted_volume " . $ret, $output, $ret_val);
24 exec("mklink /d mklink_symlink \"новая папка\"", $output, $ret_val);
H A Dbug48746_3.phpt11 $ret = exec(get_junction().' /? 2>&1', $out);
22 exec("mkdir " . $dirname, $output, $ret_val);
24 exec(get_junction()." junction directory", $output, $ret_val);
/PHP-7.4/ext/standard/tests/file/
H A Dbug41874.phpt2 bug #41874 (Separate STDOUT and STDERR in exec functions)
9 $result = exec('cd 1:\non_existent; dir nonexistent');
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug70862.phpt14 $db->exec('DROP TABLE IF EXISTS test');
15 $db->exec(sprintf('CREATE TABLE test(id INT, label BLOB)'));
42 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_attr_init_command.phpt22 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table));
31 $db->exec(sprintf('INSERT INTO %s(id) VALUES (1)', $table));
35 $db->exec(sprintf('DROP TABLE IF EXISTS %s', $table));
H A Dpdo_mysql_bit.phpt2 MySQL PDO->exec(), BIT columns - remove after fix!
18 $db->exec('DROP TABLE IF EXISTS test');
20 @$db->exec($sql);
54 $db->exec('DROP TABLE IF EXISTS test');
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c147 pg->exec = NULL; in php_phpdbg_globals_ctor()
297 zend_string *exec; in PHP_FUNCTION() local
315 PHPDBG_G(exec) = zend_strndup(ZSTR_VAL(exec), ZSTR_LEN(exec)); in PHP_FUNCTION()
1368 char *exec = NULL; in main() local
1451 exec = settings->exec; in main()
1716 if (exec) { in main()
1717 free(exec); in main()
1778 PHPDBG_G(exec) = phpdbg_resolve_path(exec); in main()
1779 PHPDBG_G(exec_len) = PHPDBG_G(exec) ? strlen(PHPDBG_G(exec)) : 0; in main()
1781 free(exec); in main()
[all …]
/PHP-7.4/ext/pdo_firebird/tests/
H A Dbug_72931.phpt11 @$dbh->exec('drop table tablea');
12 $dbh->exec('create table tablea (id integer)');
/PHP-7.4/ext/pdo/tests/
H A Dbug_36798.phpt24 @$db->exec("SET NAMES 'LATIN1'"); // needed for PostgreSQL
25 $db->exec("CREATE TABLE test (id INTEGER)");
26 $db->exec("INSERT INTO test (id) VALUES (1)");
H A Dpdo_035.phpt10 $db->exec('CREATE TABLE test (id int)');
11 $db->exec('INSERT INTO test VALUES (23)');
H A Dpdo_017.phpt38 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10))'.$suf);
39 $db->exec("INSERT INTO test VALUES(1, 'A')");
40 $db->exec("INSERT INTO test VALUES(2, 'B')");
41 $db->exec("INSERT INTO test VALUES(3, 'C')");
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_1.phpt17 $dbh->exec("drop table pdo_ac_tab");
40 $dbh->exec("create table pdo_ac_tab (col1 varchar2(20))");
41 $dbh->exec("insert into pdo_ac_tab (col1) values ('some data')");
52 $dbh->exec("drop table pdo_ac_tab");

Completed in 37 milliseconds

12345678910>>...13