gpt4 book ai didi

php - PDO ODBC MYSQL : i try to connect and it just gives me a fatal error

转载 作者:行者123 更新时间:2023-11-29 09:50:55 26 4
gpt4 key购买 nike

我尝试使用以下 php pdo 代码连接到 odbc

$ligacao = new PDO("odbc:Driver={MYSQL ODBC 8.0 ANSI Driver };Server=localhost;Database=samsic; Uid=root;Pwd='';") 

它只是给了我以下错误:

error

对此有什么想法吗?

最佳答案

由于您的数据库是本地的,正如 RiggsFolly 所说,您不需要 ODBC。

$db_host = "localhost";
$db_name = "samsic";
$db_user = "root";
$db_pass = "";
try{
$dbh = new PDO("mysql:host={$db_host};dbname={$db_name}",$db_user,$db_pass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo 'success';
}
catch(PDOException $e){
die('ERROR: ' . $e->getMessage());
}

关于php - PDO ODBC MYSQL : i try to connect and it just gives me a fatal error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54825344/

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