Allow the PostgreSQL driver to do internal row counting when iterating

through a result set.

Submitted by: Georg von Zezschwitz <gvz@2scale.net>
This commit is contained in:
Jon Parise 2001-06-19 18:10:08 +00:00
parent d86f4828b9
commit dbd51aaf61
2 changed files with 73 additions and 32 deletions

View file

@ -112,6 +112,7 @@ typedef struct pgLofp {
typedef struct _php_pgsql_result_handle {
PGconn *conn;
PGresult *result;
int row;
} pgsql_result_handle;
typedef struct {