mirror of
https://github.com/php/php-src.git
synced 2026-03-25 08:42:29 +01:00
14 lines
294 B
PHP
14 lines
294 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
include 'config.inc';
|
|
|
|
$db = pg_connect($conn_str);
|
|
$fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
|
|
|
|
pg_insert($db, $table_name, $fields) or print "Error in test 1\n";
|
|
echo pg_insert($db, $table_name, $fields, PGSQL_DML_STRING)."\n";
|
|
|
|
echo "Ok\n";
|
|
?>
|