Searched refs:tableName (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/pdo_pgsql/ |
H A D | pgsql_driver.stub.php | 11 …public function pgsqlCopyFromArray(string $tableName, array | Traversable $rows, string $separator… argument 14 …public function pgsqlCopyFromFile(string $tableName, string $filename, string $separator = "\t", s… argument 17 …public function pgsqlCopyToArray(string $tableName, string $separator = "\t", string $nullAs = "\\… argument 20 …public function pgsqlCopyToFile(string $tableName, string $filename, string $separator = "\t", str… argument
|
H A D | pdo_pgsql.stub.php | 38 …public function copyFromArray(string $tableName, array $rows, string $separator = "\t", string $nu… argument 40 …public function copyFromFile(string $tableName, string $filename, string $separator = "\t", string… argument 42 …public function copyToArray(string $tableName, string $separator = "\t", string $nullAs = "\\\\N",… argument 44 …public function copyToFile(string $tableName, string $filename, string $separator = "\t", string $… argument
|
H A D | pgsql_driver_arginfo.h | 5 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0) 13 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0) 21 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0)
|
H A D | pdo_pgsql_arginfo.h | 9 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0) 17 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0) 25 ZEND_ARG_TYPE_INFO(0, tableName, IS_STRING, 0)
|
/php-src/ext/pdo/tests/ |
H A D | pdo_test.inc | 77 public static function dropTableIfExists(PDO $db, string $tableName): void { 85 EXECUTE IMMEDIATE 'DROP TABLE $tableName'; 94 "firebird" => @$db->exec("DROP TABLE $tableName"), 95 default => $db->exec("DROP TABLE IF EXISTS $tableName"),
|
Completed in 7 milliseconds