/php-src/ext/pdo/tests/ |
H A D | bug_65946.phpt | 18 $db->exec('CREATE TABLE test65946(id int)'); 19 $db->exec('INSERT INTO test65946 VALUES(1)');
|
H A D | pdo_016a.phpt | 23 $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 D | pdo_034.phpt | 18 $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 D | bug_34630.phpt | 22 $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 D | bug_43130.phpt | 26 $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 D | dialect_1.phpt | 39 $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 D | batch_stmt_ins_exec.phpt | 29 "exec test_proc_batch_stmt_ins_exec; " . 37 // check results from the exec
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_max_buffer_size.phpt | 26 …$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 D | pdo_mysql_stmt_blobfromstream.phpt | 57 $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 D | pdo_mysql_multi_stmt_nextrowset.phpt | 24 $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 D | pdo_mysql_types_zerofill.phpt | 2 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 D | pdo_mysql_stmt_errorinfo.phpt | 31 $db->exec("DROP TABLE {$table}"); 53 $db->exec("DROP TABLE {$table}"); 68 $db->exec('DROP TABLE IF EXISTS pdo_mysql_stmt_errorinfo');
|
H A D | pdo_mysql_attr_oracle_nulls.phpt | 52 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 D | bug_44707.phpt | 17 $db->exec('CREATE TABLE test_44707(id INT, mybool TINYINT)'); 62 $db->exec('DROP TABLE IF EXISTS test_44707');
|
H A D | pdo_mysql_prepare_native_clear_error.phpt | 17 …$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 D | pdo_mysql_pconnect.phpt | 23 $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 D | bug76665.phpt | 8 $db->exec("CREATE TABLE foo (bar REAL)");
|
H A D | bug71049.phpt | 10 $db->exec('CREATE TABLE test (age INTEGER, id STRING)');
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | is_in_transaction.phpt | 18 $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 D | bug_33876.phpt | 17 $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 D | bug81227.phpt | 10 $db->exec("BEGIN EXCLUSIVE TRANSACTION");
|
/php-src/sapi/fpm/tests/ |
H A D | socket-close-on-exec.phpt | 48 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 D | long_columns.phpt | 49 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 D | bug47517.phpt | 8 exec('net session 2>&1', $out, $status);
|
/php-src/ext/com_dotnet/tests/ |
H A D | bug77578.phpt | 17 exec($command, $output, $status);
|