Searched refs:pg_delete (Results 1 – 5 of 5) sorted by relevance
/PHP-7.4/ext/pgsql/tests/ |
H A D | pg_delete_001.phpt | 2 PostgreSQL pg_delete() - basic test using schema 27 pg_delete($conn, 'foo', array('id' => 1, 'id2' => 0)); 28 pg_delete($conn, 'foo', array('id' => 1, 'id2' => 2)); 29 var_dump(pg_delete($conn, 'foo', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING)); 31 pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 1)); 32 pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 3)); 33 var_dump(pg_delete($conn, 'phptests.foo', array('id' => 2, 'id2' => 3), PGSQL_DML_STRING)); 39 pg_delete($conn, 'bar', array('id' => 1, 'id2' => 2)); 40 var_dump(pg_delete($conn, 'bar', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING)); 83 Warning: pg_delete(): Table 'bar' doesn't exists in %s on line %d [all …]
|
H A D | 15pg_delete.phpt | 2 PostgreSQL pg_delete() 15 echo pg_delete($db, $table_name, $ids, PGSQL_DML_STRING)."\n"; 16 echo pg_delete($db, $table_name, $ids, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 17 if (!pg_delete($db, $table_name, $ids)) {
|
H A D | bug47199.phpt | 2 Bug #47199 (pg_delete fails on NULL) 22 $query = pg_delete($dbh, $tbl_name, array('null_field' => NULL,'not_null_field' => 2), PGSQL_DML_ST…
|
/PHP-7.4/ext/pgsql/ |
H A D | php_pgsql.h | 193 PHP_FUNCTION(pg_delete);
|
H A D | pgsql.c | 717 PHP_FE(pg_delete, arginfo_pg_delete) 7024 PHP_FUNCTION(pg_delete) argument
|
Completed in 26 milliseconds