Searched refs:pg_insert (Results 1 – 16 of 16) sorted by relevance
/PHP-5.6/ext/pgsql/tests/ |
H A D | pg_insert_002.phpt | 2 PostgreSQL pg_insert() - test for CVE-2015-1532 13 var_dump(pg_insert($conn, $table, array('id' => 1, 'id2' => 1))); 19 Warning: pg_insert(): The table name must be specified in %s on line %d 22 Warning: pg_insert(): The table name must be specified in %s on line %d 25 Warning: pg_insert(): The table name must be specified in %s on line %d
|
H A D | 12pg_insert_9.phpt | 2 PostgreSQL pg_insert() (9.0+) 19 pg_insert($db, $table_name, $fields) or print "Error in test 1\n"; 20 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n"; 21 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING|PGSQL_DML_ESCAPE)."\n"; 22 var_dump( pg_insert($db, $table_name, $fields, PGSQL_DML_EXEC) ); // Return resource
|
H A D | pg_delete_001.phpt | 17 pg_insert($conn, 'foo', array('id' => 1, 'id2' => 1)); 18 pg_insert($conn, 'foo', array('id' => 1, 'id2' => 2)); 19 pg_insert($conn, 'foo', array('id' => 1, 'id2' => 2)); 20 pg_insert($conn, 'foo', array('id' => 3, 'id2' => 3)); 22 pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 1)); 23 pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2)); 24 pg_insert($conn, 'phptests.foo', array('id' => 2, 'id2' => 3)); 25 pg_insert($conn, 'phptests.foo', array('id' => 2, 'id2' => 3));
|
H A D | pg_insert_001.phpt | 16 pg_insert($conn, 'foo', array('id' => 1, 'id2' => 1)); 18 pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2)); 20 var_dump(pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2), PGSQL_DML_STRING)); 30 Warning: pg_insert(): Table 'foo' doesn't exists in %s on line %d
|
H A D | 12pg_insert.phpt | 2 PostgreSQL pg_insert() 17 pg_insert($db, $table_name, $fields) or print "Error in test 1\n"; 18 echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
|
H A D | bug68638.phpt | 16 pg_insert($conn,$table, array('id' => 1, 'value' => 1.2)); 17 pg_insert($conn,$table, array('id' => 2, 'value' => 10)); 18 pg_insert($conn,$table, array('id' => 3, 'value' => 15));
|
H A D | 80_bug39971.phpt | 2 Bug #39971 (8.0+) (pg_insert/pg_update do not allow now() to be used for timestamp fields) 20 pg_insert($dbh, 'php_test', $values);
|
H A D | 80_bug42783.phpt | 2 Bug #42783 (pg_insert() does not support an empty value array) 19 pg_insert($dbh, 'php_test', array());
|
H A D | bug47199.phpt | 17 pg_insert($dbh, $tbl_name, array('null_field' => null, 'not_null_field' => 1)); 18 pg_insert($dbh, $tbl_name, array('null_field' => null, 'not_null_field' => 2));
|
H A D | pg_update_001.phpt | 18 pg_insert($conn, 'foo', array('id' => 1, 'id2' => 1)); 19 pg_insert($conn, 'phptests.foo', array('id' => 1, 'id2' => 2));
|
H A D | 10pg_convert_json_array.phpt | 23 if (!pg_insert($db, $table_name_92, $fields)) {
|
/PHP-5.6/ext/pgsql/ |
H A D | php_pgsql.h | 191 PHP_FUNCTION(pg_insert);
|
H A D | README | 203 bool pg_insert(resource db, string table, array values[, bool convert[, bool async]])
|
H A D | pgsql.c | 715 PHP_FE(pg_insert, arginfo_pg_insert) 6667 PHP_FUNCTION(pg_insert) argument
|
/PHP-5.6/ |
H A D | UPGRADING | 261 pg_insert()/pg_select()/pg_update()/pg_delete() are no longer EXPERIMENTAL. 380 - pg_insert()/pg_select()/pg_update()/pg_delete()/pg_meta_data()/pg_convert() 382 - Added PGSQL_DML_ESCAPE option for pg_insert()/pg_select()/pg_update()/pg_delete()
|
H A D | NEWS | 2379 . pg_insert()/pg_select()/pg_update()/pg_delete() are no longer EXPERIMENTAL. 2381 . Impremented FR #25854 Return value for pg_insert should be resource instead of bool. 2909 for pg_insert()/pg_update()/pg_delete()/pg_select(). (Yasuo) 3261 /pg_delete()/pg_insert()). (Yasuo) 8391 - Fixed bug #45004 (pg_insert() does not accept 4 digit timezone format). 8684 - Fixed bug #42783 (pg_insert() does not accept an empty list for 9464 - Fixed bug #39971 (pg_insert/pg_update do not allow now() to be used
|
Completed in 233 milliseconds