sqlite.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php namespace Laravel\Database\Connectors; use PDO;
  2. class SQLite extends Connector {
  3. /**
  4. * Establish a PDO database connection for a given database configuration.
  5. *
  6. * @param array $config
  7. * @return PDO
  8. */
  9. public function connect($config)
  10. {
  11. $options = $this->options($config);
  12. // SQLite in-memory databases only live for the lifetime of the current request, and it
  13. // is impossible to create two connections to the same in-memory database.
  14. if ($config['database'] == ':memory:')
  15. {
  16. return new PDO('sqlite::memory:', null, null, $options);
  17. }
  18. // We will check for the database in the default storage directory for the application.
  19. // Typically, this directory holds all of the SQLite databases for the application.
  20. elseif (file_exists($path = DATABASE_PATH.$config['database'].'.sqlite'))
  21. {
  22. return new PDO('sqlite:'.$path, null, null, $options);
  23. }
  24. // If we still haven't located the database, we will assume the given database name
  25. // is a fully qualified path to the database on disk and attempt to load it.
  26. elseif (file_exists($config['database']))
  27. {
  28. return new PDO('sqlite:'.$config['database'], null, null, $options);
  29. }
  30. throw new \Exception("SQLite database [{$config['database']}] could not be found.");
  31. }
  32. }