Run unit tests across different database backends + fix bugs

This commit is contained in:
Frédéric Guillot
2014-09-15 22:35:56 +02:00
parent 5f962bf4cd
commit e1ddf7f012
28 changed files with 536 additions and 441 deletions

View File

@@ -78,6 +78,12 @@ class Database
}
public function closeConnection()
{
$this->pdo = null;
}
public function escapeIdentifier($value)
{
return $this->pdo->escapeIdentifier($value);