summaryrefslogtreecommitdiff
path: root/includes/database/prefetch.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/database/prefetch.inc')
-rw-r--r--includes/database/prefetch.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/includes/database/prefetch.inc b/includes/database/prefetch.inc
index 663927af7..9d02dcfc2 100644
--- a/includes/database/prefetch.inc
+++ b/includes/database/prefetch.inc
@@ -175,9 +175,8 @@ class DatabaseStatementPrefetch implements Iterator, DatabaseStatementInterface
// as soon as possible.
$this->rowCount = $statement->rowCount();
$this->data = $statement->fetchAll(PDO::FETCH_ASSOC);
- // Destroy the statement as soon as possible.
- // See DatabaseConnection_sqlite::PDOPrepare() for explanation.
- // @see DatabaseConnection_sqlite::PDOPrepare()
+ // Destroy the statement as soon as possible. See
+ // DatabaseConnection_sqlite::PDOPrepare() for explanation.
unset($statement);
$this->resultRowCount = count($this->data);