Active
Project:
DBTNG
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
30 Oct 2011 at 12:53 UTC
Updated:
20 Jul 2012 at 11:21 UTC
Hi,
I get the error
DatabaseDriverNotSpecifiedException: Driver not specified for this database connection: sqlite in Database::openConnection() (line 1635 of /Users/jepster/webs/pa_eng/includes/database/database.inc).
when I want to migrate from mysql to sqlite on the page admin/structure/dbtng/migrator.
My settings in the settings.php:
$databases = array (
'default' =>
array (
'default' =>
array (
'database' => 'pa-eng',
'username' => 'root',
'password' => 'root',
'host' => 'localhost',
'port' => '',
'driver' => 'mysql',
'prefix' => '',
),
),
'sqlite' =>
array (
'sqlite' =>
array (
'database' => '/Users/jepster/Desktop/pa-eng.sqlite',
'driver' => 'sqlite',
'prefix' => '',
),
),
);
Comments
Comment #1
jnor commentedLook in migration code where Database::getConnection is defined
Comment #1.0
jnor commentedEdited synthax highlighting.