]> granicus.if.org Git - php/commitdiff
stub out scrollable cursors here too
authorWez Furlong <wez@php.net>
Wed, 12 Jan 2005 06:12:26 +0000 (06:12 +0000)
committerWez Furlong <wez@php.net>
Wed, 12 Jan 2005 06:12:26 +0000 (06:12 +0000)
ext/pdo_firebird/firebird_statement.c

index ee325453ec972a75d552b4303abafc39dbcedf2e..3907d92634cdbd8afe20786c52160c6eff47821d 100644 (file)
@@ -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;