php-src/ext/pgsql/tests/createdb.inc
Yasuo Ohgaki 04691a516b Add bytea field to test table.
Use table name variable.
2002-04-05 06:06:21 +00:00

22 lines
361 B
PHP

<?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 ".$table_name." VALUES ($i, 'ABC');");
}
}
else {
echo pg_last_error()."\n";
}
pg_close($db);
echo "OK";
?>