summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/createdb.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pgsql/tests/createdb.inc')
-rw-r--r--ext/pgsql/tests/createdb.inc22
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/pgsql/tests/createdb.inc b/ext/pgsql/tests/createdb.inc
new file mode 100644
index 0000000000..ed425387fa
--- /dev/null
+++ b/ext/pgsql/tests/createdb.inc
@@ -0,0 +1,22 @@
+<?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";
+
+?> \ No newline at end of file