I tried to change mysql to ms sql server dbms in yii but encounter PDO Exception, "Caused by: PDOException could not find driver". What is the issue there?
This is db.php file.
'class' => 'yii\db\Connection',
'dsn' => 'sqlsrv:Server=localhost;Database=mydb',
'username' => 'myusername',
'password' => 'myps',
'charset' => 'utf8'
This is config.php.
'components' => [
'db' => [
'dsn' => 'sqlsrv:Server=localhost;Database=mydb',
],