首页 > 解决方案 > Laravel - xampp 找不到驱动程序(SQL:select * from sqlite_master where type = 'table' and name = migrations)

问题描述

我正在使用Laravel 8和 **Xampp (v3.2.4) - ** 并配置 phpunit.xml 以在 sqlite_testing (内存)上运行测试。

<server name="DB_CONNECTION" value="sqlite_testing"/>
<server name="DB_DATABASE" value=":memory:"/>

database.php
'sqlite_testing' => [
  'driver' => 'sqlite',
  'database' => ':memory:'
],

当我运行 ./vendor/bin/phpunit --color --testdox 我收到此错误:

为了解决这个问题,我尝试过:

没有任何效果。仍然收到错误消息:

   ├ Illuminate\Database\QueryException: could not find driver (SQL: select * from sqlite_master where type = 'table' and name = migrations)

标签: phplaravelxampp

解决方案


按照这些步骤。

1 step: sudo apt install sqlite3
2 step: sudo apt-get install php7.4-sqlite3 -y
3 step: php -m | grep sqlite
4 step: .env

DB_CONNECTION=sqlite
DB_DATABASE={absolute_path}/database.sqlite
#DB_FOREIGN_KEYS=true
#DB_HOST=127.0.0.1
#DB_PORT=3306
#DB_DATABASE=homestead
#DB_USERNAME=homestead
#DB_PASSWORD=secret

推荐阅读