Home
last modified time | relevance | path

Searched refs:exec (Results 151 – 175 of 264) sorted by relevance

1234567891011

/PHP-5.5/ext/standard/tests/file/
H A Dbug41874_1.phpt2 bug #41874 (Separate STDOUT and STDERR in exec functions)
H A Dbug41874_3.phpt2 bug #41874 (Separate STDOUT and STDERR in exec functions)
/PHP-5.5/ext/pdo/tests/
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.phpt24 $db->exec("CREATE TABLE test (a varchar(100), b varchar(100), c varchar(100))");
27 $db->exec("INSERT INTO test (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
H A Dpdo_022.phpt27 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
28 $db->exec('insert2', "INSERT INTO test VALUES(:first, :second, :third)");
H A Dbug_44173.phpt17 $db->exec("CREATE TABLE test (x int)");
18 $db->exec("INSERT INTO test VALUES (1)");
/PHP-5.5/ext/pdo_mysql/tests/
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_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');
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_prepare_native_named_placeholder.phpt17 $db->exec('DROP TABLE IF EXISTS test');
18 $db->exec(sprintf('CREATE TABLE test(id INT, label CHAR(255)) ENGINE=%s', PDO_MYSQL_TEST_ENGINE));
73 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_exec_load_data.phpt2 MySQL PDO->exec(), affected rows
26 $ret = $db->exec($sql);
106 $db->exec('DROP TABLE IF EXISTS test');
H A Dbug_41125.phpt25 $db->exec("DROP TABLE IF EXISTS test");
45 $db->exec("DROP TABLE IF EXISTS test");
H A Dpdo_mysql_pconnect.phpt21 $db1->exec('SET @pdo_persistent_connection=1');
47 $affected = $db1->exec(sprintf('KILL %d', $con1));
52 @$db1->exec("SET @pdo_persistent_connection=2");
H A Dpdo_mysql_attr_oracle_nulls.phpt45 if ($have_procedures && (false !== $db->exec('DROP PROCEDURE IF EXISTS p')) &&
46 …(false !== $db->exec("CREATE PROCEDURE p() BEGIN SELECT NULL as z, '' AS a, ' ' AS b, TRIM(' ') as…
80 @$db->exec('DROP PROCEDURE IF EXISTS p');
H A Dpdo_mysql_stmt_getcolumnmeta.phpt71 $db->exec('DROP TABLE IF EXISTS test');
79 if (!$db->exec(sprintf("INSERT INTO test(id, label) VALUES (1, '%s')", $value))) {
236 $db->exec('DROP TABLE IF EXISTS test');
239 $db->exec('INSERT INTO test(id, label) VALUES (1, 2)');
257 $db->exec('DROP TABLE IF EXISTS test');
260 $db->exec('INSERT INTO test(id) VALUES (1)');
278 $db->exec('DROP TABLE IF EXISTS test');
281 $db->exec('INSERT INTO test(id, label1, label2) VALUES (1, 2, 3)');
309 $db->exec('DROP TABLE IF EXISTS test');
H A Dpdo_mysql_errorcode.phpt43 $db->exec('DROP TABLE IF EXISTS test');
49 $db->exec('DROP TABLE IF EXISTS unknown');
/PHP-5.5/ext/pdo_oci/tests/
H A Dbug46274_2.phpt19 $db->exec("DROP TABLE test_one_blob");
60 $db->exec("DROP TABLE test_one_blob");
/PHP-5.5/ext/mysql/tests/
H A Dbug55473.phpt11 if (!($output = @exec("lsof -np " . getmypid())))
59 $opened_files = trim(exec("lsof -np " . getmypid() . " | wc -l"));
61 } else if (($tmp = trim(exec("lsof -np " . getmypid() . " | wc -l"))) != $opened_files) {
/PHP-5.5/ext/standard/tests/file/windows_links/
H A Dcommon.inc5 return exec('echo %SYSTEMROOT%');
/PHP-5.5/ext/interbase/tests/
H A D006.phpt177 echo "prepare and exec insert\n";
194 echo "prepare and exec select\n";
237 prepare and exec insert
250 prepare and exec select
/PHP-5.5/ext/sqlite3/tests/
H A Dbug66550.phpt12 $db->exec('CREATE TABLE foo (id INTEGER, bar STRING)');
H A Dsqlite3_16_select_no_results.phpt12 var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
/PHP-5.5/ext/pdo_sqlite/tests/
H A Dpdo_fetch_func_001.phpt11 $db->exec('CREATE TABLE testing (id INTEGER , name VARCHAR)');
12 $db->exec('INSERT INTO testing VALUES(1, "php")');
13 $db->exec('INSERT INTO testing VALUES(2, "")');
/PHP-5.5/ext/standard/tests/general_functions/
H A Descapeshellarg_basic.phpt12 * Source code: ext/standard/exec.c

Completed in 38 milliseconds

1234567891011