You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
360 B

<?php
// create test table
include('config.inc');
$db = pg_connect($conn_str);
if (!@pg_num_rows(@pg_query($db, "SELECT * FROM ".$table_name)))
{
@pg_query($db,$table_def);
for ($i=0; $i < $num_test_record; $i++) {
pg_query($db,"INSERT INTO php_pgsql_test VALUES ($i, 'ABC');");
}
}
else {
echo pg_last_error()."\n";
}
pg_close($db);
echo "OK";
?>