Laravel xampp 迁移缺少的驱动程序 windows 10

Laravel xampp migrate missing driver windowns 10

Windows 10,使用 xampp v3.2.4,Laravel 8.12。每当 运行 php artisan migrate 我得到 could not find driver (SQL: select * from information_schema.tables where table_schema = public and table_name = migrations and table_type = 'BASE TABLE').

我几乎尝试了堆栈上的每个 'solution'。我更新了 C:\xampp\php\php.ini 文件,取消注释 extension=pdo_mysqlextension=mysqli 加上设置 extension_dir="C:/xampp/php/ext" 没有运气。

通过在命令行上使用 mysql -u root 登录 MySQL 并创建数据库,我在创建数据库时没有遇到任何问题。

在环境文件中,`

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

anddatabase.phpit's set to'default' => env('DB_CONNECTION', 'mysql'),` 我没有解决方案。任何帮助深表感谢。数据库显示在 PHPMyAdmin 仪表板上。

卸载 Laravel 后,重新安装迁移命令现在可以正常工作。虽然我不知道是什么导致它现在可以正常工作。