我有一个MSSQL数据库,其文件存储为blob,文件大小各不相同。我开发了一个概念证明,并使用PHP的SQLSRV驱动程序,代码运行良好。我的客户要求应用程序在Linux环境中运行,所以我已经转移到FreeTDS,我似乎唯一的问题是我使用的mssql_fetch_array
函数不能检索整个blob。当我注意到存储在磁盘上的文件都是63KB时,我得出了这个结论,我将代码更改为var_dump
保存二进制数据的变量,它显示["attachment"]=> string(64512)
,而不管blob的大小(数据库中有3,9mb)。
当我使用SQLSRV驱动程序时,我必须指定要检索的数据是二进制文件而我没有遇到这些问题,但是,这一直是失败的。我的代码摘录如下,请指出我的方法错误。
$stmt3 = mssql_query($tsql3) or
die("<p style='color:red;'>{addFile} Could not $query: " . mssql_get_last_message() . "</p>");;
// handle the notices with attachments, add meta and save binary info to filesystem
while ( $noticeAttachmentList = mssql_fetch_array( $stmt3) ){
$c = $noticeAttachmentList[1]; // filename
$header = $noticeAttachmentList[2]; // file header
$download = $noticeAttachmentList[3]; // binary data
$nID = $noticeAttachmentList[4]; // FK for external system
// create the filename path & make the filename web-friendly
$filename = $uploadsDir;
$filename .= str_replace(' ', '_',$c);
// create entry in notice_attachement table
$noticeFileInfo = array(
'fk_notice_id' => $noticeID,
'filename' => $c,
'post_id' => $postID,
'notice_attachment_id' => $nID,
'date_added' => date("Y-m-d H:i:s", time())
);
// check if the file exists
if (file_exists($filename)){
echo "<p class='error'>Error: The file ".$filename." exists already in the destination folder.</p>";
return false;
}
// create the file
if (!file_exists($filename)){
echo "Your file, ". $filename ."is ready for download<br/>";
// download the file from the database and store in uploadsDir
file_put_contents($filename, $download);
//var_dump($download);
return true;
}
$file = $metaAttachmentPath . str_replace(' ', '_',$c);
}
答案 0 :(得分:1)
有几个地方可以发挥此限制,但我猜它可能在你的FreeTDS配置中(通常在/etc/freetds.conf
或/etc/freetds/freetds.conf
)。
寻找与此相似的一行:
text size = 64512
并在[global]
部分将其更改为此类似内容:
test size = 4294967295
应该立即修复它 - 我相信freetds.conf
中的默认设置是Sybase的遗留[global]
设置。