Browse Source

Fixed bug #34758 (PDO_DBLIB did not implement rowCount()).

migration/RELEASE_1_0_0
Ilia Alshanetsky 21 years ago
parent
commit
fd2365ae3c
  1. 2
      ext/pdo_dblib/dblib_stmt.c

2
ext/pdo_dblib/dblib_stmt.c

@ -96,6 +96,8 @@ static int pdo_dblib_stmt_execute(pdo_stmt_t *stmt TSRMLS_DC)
ret = dbnextrow(H->link);
stmt->row_count = DBCOUNT(H->link);
if (ret == NO_MORE_ROWS) {
return 1;
}

Loading…
Cancel
Save