-2
I’m trying to use Sqlite in a project but when performing any command with Sqlite returns:
Unsupported driver [C].
this is my configuration on database php.
'sqlite' => [
'driver' => 'sqlite',
'url' => database_path('database.sqlite'),
'database' => database_path('database.sqlite'),
'prefix' => '',
'foreign_key_constraints' => true,
],
Activated in the
php.ini
the length of the sqlite?– Guilherme Nascimento
Yes I enabled sqlite in php.ini
– Enfasto
Active sqlite with PDO or without PDO?
– Guilherme Nascimento
I activated both of them
– Enfasto
You reset the Apache?
– Guilherme Nascimento
i use php Artisan serves direct. do not use apache
– Enfasto