1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 07:58:20 +02:00
Files
archived-php-src/ext/pgsql/tests
Christopher Kings-Lynne 1168c30635 Added several new functions to support the PostgreSQL v3 protocol
introduced in PostgreSQL 7.4.

(PHP pg_transaction_status) New function to get in-transaction status of
                            a database connection.

(PHP pg_query_params) New function to allow execution of parameterized
                      queries.

(PHP pg_prepare) New function to allow preparing named queries.

(PHP pg_execute) New function to allow execution of named prepared
                 queries.

(PHP pg_send_query_params) New function that is the async equivalent of
                           pg_query_params.

(PHP pg_send_prepare) New function that is the async equivalent of
                      pg_prepare.

(PHP pg_send_execute) New function that is the async equivalent of
                      pg_execute.

(PHP pg_result_error_field) New function that allows highly detailed
                            error information, most importantly the
                            SQLSTATE error code

# Regression tests are included for all but 2 functions, the rest will
# follow shortly.  Docs will also follow shortly.
2005-03-19 08:46:56 +00:00
..
2003-05-20 00:14:46 +00:00
2004-03-09 14:37:49 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-07-20 20:27:43 +00:00
2003-05-20 00:14:46 +00:00
2003-05-20 00:14:46 +00:00
2003-05-31 12:54:20 +00:00

Test scripts assumes: 
 - PostgreSQL server is installed locally
 - there is a PostgreSQL account for the users running the test scripts
 - there is database named "test"

For instance, if your login name is 'testuser', you should have PostgreSQL 
user account named 'testuser' and grant that user access to the database 
'test'.

If you have account and database, type "createdb test" from command prompt 
to create the database to execute the test scripts. By executing the above 
command as the same user running the tests you ensure that the user is 
granted access to the database.

If you find problems in PostgreSQL module, please mail to
intenals@lists.php.net, helly@php.net or yohgaki@php.net.