gpt4 book ai didi

php - artisan : Could not find driver

转载 作者:可可西里 更新时间:2023-11-01 13:33:56 26 4
gpt4 key购买 nike

我使用的是 Laravel 最新版本:3.2.1。

当我在终端上运行时:

php artisan 迁移:安装

我有这个错误:

找不到驱动程序

我在 Google 和 Laravel 的论坛上进行了一些搜索,但一无所获。

编辑

我已经激活了扩展,这就是我在 phpinfo() 上的内容--with-iconv' '--with-pdo-mysql=mysqlnd' '--with-pdo-pgsql=/opt/lampp/postgresql' '--with-pdo 看起来像我的pdo 已设置。

这是我的 phpinfo()

的图像

enter image description here

编辑 2我做了一个小测试:

<?php
try {
$dbh = new PDO("mysql:host=localhost;dbname=jjimobiliaria", "root", "");
foreach($dbh->query('SELECT * from pdo_test') as $row) {
print_r($row);
}
$dbh = null;
} catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}

返回:

Array ( [id] => 1 [0] => 1 [test_column] => TESTING!!! [1] => TESTING!!! )

所以我的 PDO 工作正常

最佳答案

在 Ubuntu 12.04 上,我所要做的就是安装 php5-mysql:

sudo apt-get install php5-mysql

然后成功了。

关于php - artisan : Could not find driver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10872606/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com