mirror of
https://github.com/php/php-src.git
synced 2026-03-25 08:42:29 +01:00
The DB connection should be provided in all cases as the first argument. The overloaded function signatures will be removed in the future. Warn about this change. Part of https://wiki.php.net/rfc/deprecations_php_8_1.
42 lines
917 B
PHP
42 lines
917 B
PHP
--TEST--
|
|
PostgreSQL pg_select() - basic test using schema
|
|
--EXTENSIONS--
|
|
pgsql
|
|
--SKIPIF--
|
|
<?php include("skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include('config.inc');
|
|
|
|
$conn = pg_connect($conn_str);
|
|
|
|
pg_query($conn, 'CREATE SCHEMA phptests');
|
|
pg_query($conn, 'CREATE TABLE phptests.foo (id INT, id2 INT)');
|
|
|
|
|
|
pg_insert($conn, 'foo', array('id' => 1, 'id2' => 1));
|
|
|
|
pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2));
|
|
|
|
var_dump(pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING));
|
|
|
|
var_dump(pg_select($conn, 'phptests.foo', array('id' => 1)));
|
|
|
|
pg_query($conn, 'DROP TABLE phptests.foo');
|
|
pg_query($conn, 'DROP SCHEMA phptests');
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: pg_insert(): Table 'foo' doesn't exists in %s on line %d
|
|
string(55) "INSERT INTO "phptests"."foo" ("id","id2") VALUES (1,2);"
|
|
array(1) {
|
|
[0]=>
|
|
array(2) {
|
|
["id"]=>
|
|
string(1) "1"
|
|
["id2"]=>
|
|
string(1) "2"
|
|
}
|
|
}
|