Home
last modified time | relevance | path

Searched refs:exec (Results 201 – 225 of 394) sorted by relevance

12345678910>>...16

/php-src/ext/pdo/tests/
H A Dbug_65946.phpt18 $db->exec('CREATE TABLE test65946(id int)');
19 $db->exec('INSERT INTO test65946 VALUES(1)');
H A Dpdo_016a.phpt23 $db->exec('CREATE TABLE test016a(idx int NOT NULL PRIMARY KEY, txt VARCHAR(20))');
24 $db->exec("INSERT INTO test016a VALUES(0, 'String0')");
25 $db->exec("INSERT INTO test016a VALUES(1, 'String1')");
26 $db->exec("INSERT INTO test016a VALUES(2, 'String2')");
H A Dpdo_034.phpt18 $db->exec("CREATE TABLE test034 (a varchar(100), b varchar(100), c varchar(100))");
21 $db->exec("INSERT INTO test034 (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
H A Dbug_34630.phpt22 $db->exec('CREATE TABLE test34630 (id int NOT NULL PRIMARY KEY, val BLOB)');
24 $db->exec('CREATE TABLE test34630 (id int NOT NULL PRIMARY KEY, val VARCHAR(256))');
H A Dbug_43130.phpt26 $db->exec("CREATE TABLE test43130 (a varchar(100), b varchar(100), c varchar(100))");
29 $db->exec("INSERT INTO test43130 (a,b,c) VALUES('test".$i."','".$i."','".$i."')");
/php-src/ext/pdo_firebird/tests/
H A Ddialect_1.phpt39 $dbh->exec('RECREATE TABLE test_dialect_1(K numeric(15, 2), DT date)');
61 @$dbh->exec('DROP TABLE test_dialect_1');
/php-src/ext/pdo_dblib/tests/
H A Dbatch_stmt_ins_exec.phpt29 "exec test_proc_batch_stmt_ins_exec; " .
37 // check results from the exec
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_max_buffer_size.phpt26 …$db->exec(sprintf('CREATE TABLE test_attr_max_buffer_size(id INT, val LONGBLOB) ENGINE = %s', PDO_…
29 …$db->exec('INSERT INTO test_attr_max_buffer_size(id, val) VALUES (1, REPEAT("01234567890", 10240))…
H A Dpdo_mysql_stmt_blobfromstream.phpt57 $db->exec($sql);
97 $db->exec('DELETE FROM test_stmt_blobfromstream');
127 $db->exec('DROP TABLE IF EXISTS test_stmt_blobfromstream');
144 $db->exec('DROP TABLE IF EXISTS test_stmt_blobfromstream');
H A Dpdo_mysql_multi_stmt_nextrowset.phpt24 $db->exec("DROP PROCEDURE IF EXISTS {$procedure}");
25 …$db->exec("CREATE PROCEDURE {$procedure}() BEGIN SELECT id FROM $table ORDER BY id ASC LIMIT 3; SE…
78 $db->exec('DROP TABLE IF EXISTS pdo_mysql_multi_stmt_nextrowset');
79 $db->exec('DROP PROCEDURE IF EXISTS pdo_mysql_multi_stmt_nextrowset_p');
H A Dpdo_mysql_types_zerofill.phpt2 MySQL PDO->exec(), native types - ZEROFILL
16 $db->exec('DROP TABLE IF EXISTS test_mysql_types_zerofill');
18 $db->exec($sql);
126 $db->exec('DROP TABLE IF EXISTS test_mysql_types_zerofill');
H A Dpdo_mysql_stmt_errorinfo.phpt31 $db->exec("DROP TABLE {$table}");
53 $db->exec("DROP TABLE {$table}");
68 $db->exec('DROP TABLE IF EXISTS pdo_mysql_stmt_errorinfo');
H A Dpdo_mysql_attr_oracle_nulls.phpt52 if ($have_procedures && (false !== $db->exec("DROP PROCEDURE IF EXISTS {$procedure}")) &&
53 …(false !== $db->exec("CREATE PROCEDURE {$procedure}() BEGIN SELECT NULL as z, '' AS a, ' ' AS b, T…
74 $db->exec("DROP PROCEDURE IF EXISTS pdo_mysql_attr_oracle_nulls_p");
H A Dbug_44707.phpt17 $db->exec('CREATE TABLE test_44707(id INT, mybool TINYINT)');
62 $db->exec('DROP TABLE IF EXISTS test_44707');
H A Dpdo_mysql_prepare_native_clear_error.phpt17 …$db->exec(sprintf('CREATE TABLE test_prepare_native_clear_error(id INT, label CHAR(255)) ENGINE=%s…
25 $db->exec("INSERT INTO test_prepare_native_clear_error(id, label) VALUES (1, 'row1')");
72 $db->exec('DROP TABLE IF EXISTS test_prepare_native_clear_error');
H A Dpdo_mysql_pconnect.phpt23 $db1->exec('SET @pdo_persistent_connection=1');
50 $affected = $db1->exec(sprintf('KILL %d', $con1));
55 $db1->exec("SET @pdo_persistent_connection=2");
/php-src/ext/sqlite3/tests/
H A Dbug76665.phpt8 $db->exec("CREATE TABLE foo (bar REAL)");
H A Dbug71049.phpt10 $db->exec('CREATE TABLE test (age INTEGER, id STRING)');
/php-src/ext/pdo_pgsql/tests/
H A Dis_in_transaction.phpt18 $db->exec('CREATE TABLE test_is_in_transaction (a integer not null primary key, b text)');
62 $db->exec('DROP TABLE test_is_in_transaction');
H A Dbug_33876.phpt17 $db->exec("SET LC_MESSAGES='C'");
18 $db->exec('CREATE TABLE b33876 (foo varchar(5) NOT NULL, bar bool NOT NULL)');
19 $db->exec("INSERT INTO b33876 VALUES('false','f'), ('true', 't')");
/php-src/ext/pdo_sqlite/tests/
H A Dbug81227.phpt10 $db->exec("BEGIN EXCLUSIVE TRANSACTION");
/php-src/sapi/fpm/tests/
H A Dsocket-close-on-exec.phpt48 echo "Sockets after exec(), expected to be empty:\n";
70 Sockets after exec(), expected to be empty:
/php-src/ext/pdo_odbc/tests/
H A Dlong_columns.phpt49 if (false === $db->exec('CREATE TABLE test_long_columns (id INT NOT NULL PRIMARY KEY, data CLOB)'))…
50 …if (false === $db->exec('CREATE TABLE test_long_columns (id INT NOT NULL PRIMARY KEY, data longtex…
51 …if (false === $db->exec('CREATE TABLE test_long_columns (id INT NOT NULL PRIMARY KEY, data varchar…
77 $db->exec("INSERT INTO test_long_columns VALUES($num, '$text')");
99 $db->exec("DROP TABLE IF EXISTS test_long_columns");
/php-src/ext/standard/tests/file/
H A Dbug47517.phpt8 exec('net session 2>&1', $out, $status);
/php-src/ext/com_dotnet/tests/
H A Dbug77578.phpt17 exec($command, $output, $status);

Completed in 36 milliseconds

12345678910>>...16