How to fix “could not find driver” error in laravel 11

I got this error when starting my laravel project:

Illuminate  Database QueryException

could not find driver
PRAGMA foreign_keys = ON;

I tried to remove the semicolon extension=pdo_mysql in php.ini file from the xampp/php folder.

And remove the comments in .env file from
this

DB_CONNECTION=sqlite
#DB_HOST=127.0.0.1
#DB_PORT=3306
#DB_DATABASE=laravel
#DB_USERNAME=root
#DB_PASSWORD=

to

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

and got this error instead
select * from sessionswhereid = rJV8ccVLO8rJ0AsiiomdmMsg5FGKLNq5Asi646pd limit 1

It’s my first time learning laravel

Is there any solution?