Install SQLite extension in Yii2

0

Good day I am trying to connect my application in Yii2 with a database in SQLite but I present this error: The configuration for the "db" component must contain a "class" element.

This is my configuration file

return ['components' => [      
    'db' => [
        'class' => 'yii\db\Connection',
        'dsn' => 'sqlite:/softwareoperacional.db',
    ],
  ], 
];
    
asked by Sebastian Salazar 23.02.2018 в 19:28
source

0 answers