|
@@ -1,6 +1,6 @@
|
|
<?php namespace Laravel\Database\Connector;
|
|
<?php namespace Laravel\Database\Connector;
|
|
|
|
|
|
-use Laravel\Database\Connector;
|
|
|
|
|
|
+use PDO;
|
|
|
|
|
|
class SQLite extends Connector {
|
|
class SQLite extends Connector {
|
|
|
|
|
|
@@ -14,15 +14,15 @@ class SQLite extends Connector {
|
|
{
|
|
{
|
|
if ($config['database'] == ':memory:')
|
|
if ($config['database'] == ':memory:')
|
|
{
|
|
{
|
|
- return new \PDO('sqlite::memory:', null, null, $this->options);
|
|
|
|
|
|
+ return new PDO('sqlite::memory:', null, null, $this->options);
|
|
}
|
|
}
|
|
elseif (file_exists($path = DATABASE_PATH.$config['database'].'.sqlite'))
|
|
elseif (file_exists($path = DATABASE_PATH.$config['database'].'.sqlite'))
|
|
{
|
|
{
|
|
- return new \PDO('sqlite:'.$path, null, null, $this->options);
|
|
|
|
|
|
+ return new PDO('sqlite:'.$path, null, null, $this->options);
|
|
}
|
|
}
|
|
elseif (file_exists($config['database']))
|
|
elseif (file_exists($config['database']))
|
|
{
|
|
{
|
|
- return new \PDO('sqlite:'.$config['database'], null, null, $this->options);
|
|
|
|
|
|
+ return new PDO('sqlite:'.$config['database'], null, null, $this->options);
|
|
}
|
|
}
|
|
|
|
|
|
throw new \Exception("SQLite database [".$config['database']."] could not be found.");
|
|
throw new \Exception("SQLite database [".$config['database']."] could not be found.");
|