Skip to content

Commit 5d6e61e

Browse files
committed
Added QueryLogger to log the execution of queries
1 parent e7a4cfe commit 5d6e61e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Builder/QueryStatement.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,11 @@ public function fetch($fetchStyle = PDO::FETCH_ASSOC, $cursorOrientation = PDO::
6868
public function fetchColumn($columnNo = 0) {
6969
return $this->statement->fetchColumn($columnNo);
7070
}
71+
72+
/**
73+
* @return bool
74+
*/
75+
public function closeCursor() {
76+
return $this->statement->closeCursor();
77+
}
7178
}

0 commit comments

Comments
 (0)