Searched refs:pg_delete (Results 1 – 6 of 6) sorted by relevance
/PHP-8.2/ext/pgsql/tests/ |
H A D | pg_delete_001.phpt | 2 PostgreSQL pg_delete() - basic test using schema 29 pg_delete($conn, 'foo', array('id' => 1, 'id2' => 0)); 30 pg_delete($conn, 'foo', array('id' => 1, 'id2' => 2)); 31 var_dump(pg_delete($conn, 'foo', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING)); 33 pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 1)); 34 pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 3)); 35 var_dump(pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 3), PGSQL_DML_STRING)); 41 pg_delete($conn, 'bar', array('id' => 1, 'id2' => 2)); 42 var_dump(pg_delete($conn, 'bar', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING)); 85 Warning: pg_delete(): Table 'bar' doesn't exists in %s on line %d [all …]
|
H A D | 15pg_delete.phpt | 2 PostgreSQL pg_delete() 17 echo pg_delete($db, $table_name, $ids, PGSQL_DML_STRING)."\n"; 18 echo pg_delete($db, $table_name, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 19 if (!pg_delete($db, $table_name, $ids)) {
|
H A D | bug47199.phpt | 2 Bug #47199 (pg_delete fails on NULL) 24 $query = pg_delete($dbh, $tbl_name, array('null_field' => NULL,'not_null_field' => 2), PGSQL_DML_ST…
|
/PHP-8.2/ext/pgsql/ |
H A D | pgsql_arginfo.h | 540 ZEND_FUNCTION(pg_delete); 657 ZEND_FE(pg_delete, arginfo_pg_delete)
|
H A D | pgsql.stub.php | 890 …function pg_delete(PgSql\Connection $connection, string $table_name, array $conditions, int $flags… function
|
H A D | pgsql.c | 5641 PHP_FUNCTION(pg_delete) in PHP_FUNCTION() argument
|
Completed in 22 milliseconds