diff options
author | SVN Migration <svn@php.net> | 2002-07-07 23:03:44 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-07-07 23:03:44 +0000 |
commit | 6befc001c9c6fdd85d1b3717201d2ba457ca33e0 (patch) | |
tree | 31c32d6fb48a15932d3c279ae3c48c077c498764 /ext/pgsql/tests/old_api.inc | |
parent | f8875adaab9fe973ab798ead093e21972ed43a13 (diff) | |
download | php-git-INITIAL_IMPORT_SOURCEFORGE.tar.gz |
This commit was manufactured by cvs2svn to create tagINITIAL_IMPORT_SOURCEFORGE
'INITIAL_IMPORT_SOURCEFORGE'.
Diffstat (limited to 'ext/pgsql/tests/old_api.inc')
-rw-r--r-- | ext/pgsql/tests/old_api.inc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/ext/pgsql/tests/old_api.inc b/ext/pgsql/tests/old_api.inc deleted file mode 100644 index 4995961831..0000000000 --- a/ext/pgsql/tests/old_api.inc +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -include('config.inc'); - -$db = pg_connect($conn_str); -$result = pg_exec("SELECT * FROM ".$table_name); -pg_numrows($result); -pg_numfields($result); -pg_fieldname($result, 0); -pg_fieldsize($result, $field_name); -pg_fieldtype($result, 0); -pg_fieldprtlen($result, 0); -pg_fieldisnull($result, 0); - -pg_result($result,0,0); -$result = pg_exec("INSERT INTO ".$table_name." VALUES (7777, 'KKK')"); -$oid = pg_getlastoid($result); -pg_freeresult($result); -pg_errormessage(); -$result = pg_exec("UPDATE ".$table_name." SET str = 'QQQ' WHERE str like 'RGD';"); -pg_cmdtuples($result); - - - -echo "OK"; -?>
\ No newline at end of file |