summaryrefslogtreecommitdiff
path: root/ext/pdo_firebird
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-01-12 06:12:26 +0000
committerWez Furlong <wez@php.net>2005-01-12 06:12:26 +0000
commit222e5f9cbcc38c277793516d305523dc789c7ac6 (patch)
tree4452d7ec3a1dbc6a333554a0e036820c8f9df3a3 /ext/pdo_firebird
parentd3ab27f7cc960531ea0020d4ec01a61fca4a1bec (diff)
downloadphp-git-222e5f9cbcc38c277793516d305523dc789c7ac6.tar.gz
stub out scrollable cursors here too
Diffstat (limited to 'ext/pdo_firebird')
-rw-r--r--ext/pdo_firebird/firebird_statement.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/pdo_firebird/firebird_statement.c b/ext/pdo_firebird/firebird_statement.c
index ee325453ec..3907d92634 100644
--- a/ext/pdo_firebird/firebird_statement.c
+++ b/ext/pdo_firebird/firebird_statement.c
@@ -125,7 +125,8 @@ static int firebird_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
/* }}} */
/* called by PDO to fetch the next row from a statement */
-static int firebird_stmt_fetch(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */
+static int firebird_stmt_fetch(pdo_stmt_t *stmt, /* {{{ */
+ enum pdo_fetch_orientation ori, long offset TSRMLS_DC)
{
pdo_firebird_stmt *S = (pdo_firebird_stmt*)stmt->driver_data;
pdo_firebird_db_handle *H = S->H;