Browse Source

added query array to db\connection.

Taylor Otwell 13 years ago
parent
commit
e2c69d0c84
1 changed files with 9 additions and 0 deletions
  1. 9 0
      system/db/connection.php

+ 9 - 0
system/db/connection.php

@@ -23,6 +23,13 @@ class Connection {
 	 */
 	public $pdo;
 
+	/**
+	 * All of the queries that have been executed on the connection.
+	 *
+	 * @var array
+	 */
+	public $queries = array();
+
 	/**
 	 * Create a new Connection instance.
 	 *
@@ -66,6 +73,8 @@ class Connection {
 	 */
 	public function query($sql, $bindings = array())
 	{
+		$this->queries[] = $sql;
+
 		$query = $this->pdo->prepare($sql);
 
 		$result = $query->execute($bindings);