summaryrefslogtreecommitdiff
path: root/ext/pgsql/php_pgsql.h
diff options
context:
space:
mode:
authorJon Parise <jon@php.net>2001-06-19 18:10:08 +0000
committerJon Parise <jon@php.net>2001-06-19 18:10:08 +0000
commitdbd51aaf611a94b835f62e67543335b2a1802762 (patch)
tree1c3b8c8e1fceea3aca292ac369eaaecf3cba6bbd /ext/pgsql/php_pgsql.h
parentd86f4828b92c5577a7cc9a314684bbfe76e2aa28 (diff)
downloadphp-git-dbd51aaf611a94b835f62e67543335b2a1802762.tar.gz
Allow the PostgreSQL driver to do internal row counting when iterating
through a result set. Submitted by: Georg von Zezschwitz <gvz@2scale.net>
Diffstat (limited to 'ext/pgsql/php_pgsql.h')
-rw-r--r--ext/pgsql/php_pgsql.h1
1 files changed, 1 insertions, 0 deletions
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 {