be aware of scrollable cursors; sqlite doesn't support them

This commit is contained in:
Wez Furlong 2005-01-12 06:08:59 +00:00
parent 4d5c40cd9a
commit c77bd71315
2 changed files with 8 additions and 1 deletions

View file

@ -122,7 +122,8 @@ static int pdo_sqlite_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_d
return 1;
}
static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt TSRMLS_DC)
static int pdo_sqlite_stmt_fetch(pdo_stmt_t *stmt,
enum pdo_fetch_orientation ori, long offset TSRMLS_DC)
{
pdo_sqlite_stmt *S = (pdo_sqlite_stmt*)stmt->driver_data;
int i;