options($config); // SQLite provides supported for "in-memory" databases, which exist only for the // lifetime of the request. Any given in-memory database may only have one PDO // connection open to it at a time. Generally, these databases are used for // testing and development purposes, not in production scenarios. if ($config['database'] == ':memory:') { return new PDO('sqlite::memory:', null, null, $options); } if (file_exists($path = DATABASE_PATH.$config['database'].'.sqlite')) { return new PDO('sqlite:'.$path, null, null, $options); } throw new \Exception("SQLite database [{$config['database']}] could not be found."); } }