From dbd51aaf611a94b835f62e67543335b2a1802762 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Tue, 19 Jun 2001 18:10:08 +0000 Subject: Allow the PostgreSQL driver to do internal row counting when iterating through a result set. Submitted by: Georg von Zezschwitz --- ext/pgsql/php_pgsql.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/pgsql/php_pgsql.h') diff --git a/ext/pgsql/php_pgsql.h b/ext/pgsql/php_pgsql.h index 4fd7032b4f..09d47dfcf6 100644 --- a/ext/pgsql/php_pgsql.h +++ b/ext/pgsql/php_pgsql.h @@ -112,6 +112,7 @@ typedef struct pgLofp { typedef struct _php_pgsql_result_handle { PGconn *conn; PGresult *result; + int row; } pgsql_result_handle; typedef struct { -- cgit v1.2.1