add sqlite query driver.

This commit is contained in:
Taylor Otwell
2012-05-03 08:28:40 -05:00
parent 4822f847c2
commit 295c3b80c2
3 changed files with 28 additions and 1 deletions

View File

@@ -83,6 +83,9 @@ class Connection {
case 'mysql':
return $this->grammar = new Query\Grammars\MySQL($this);
case 'sqlite':
return $this->grammar = new Query\Grammars\SQLite($this);
case 'sqlsrv':
return $this->grammar = new Query\Grammars\SQLServer($this);