gpt4 book ai didi

php - 从 MYSQL 中选择 Blob,得到 null

转载 作者:行者123 更新时间:2023-11-29 02:28:55 25 4
gpt4 key购买 nike

从 MySQL 中选择 blob 时,我需要做什么特别的事情吗?我得到以下的 NULL(数据是 mediumblob,file_extension 是 varchar):

$sql = "SELECT data, file_extension FROM table1 WHERE table1.id = ?";
$q = $con->prepare($sql);
$q->execute(array(1));

if ($q->rowCount() == 0)
{
disconnectSqlConnection($con);
$arr = array('success' => 'false',
'error' => -2);
return json_encode($arr);
}
else
{
$row = $q->fetch();
$arr = array('success' => 'true',
'data' => $row[0],
'extension' => $row[1]);
disconnectSqlConnection($con);
return json_encode($arr);
}

$row[1] 有 'pdf',这是正确的。$row[0] 为 NULL,但在数据库中,我看到一个大小为 244.8KB 的 blob

有什么想法吗?

最佳答案

使用CAST将其转换为文本

$sql = "SELECT CAST(data AS CHAR(10000) CHARACTER SET utf8) as data, file_extension FROM table1 WHERE table1.id = ?";

关于php - 从 MYSQL 中选择 Blob,得到 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15948798/

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