我需要将图像Blob数据存储在表中。我知道在数据库表中以Blob格式存储图像不是最佳实践。但这是客户的要求。我正在使用ColdFusion 10和SQL Server2008。我已使用此代码段在SQL Server中插入图像Blob数据。
<cfimage action="read" name="imdata" source="C:\inetpub\wwwroot\a.jpg" >
<cfquery datasource="localdsn">
INSERT INTO imtbl(image)
VALUES #imageGetBlob(imdata)#
</cfquery>
但是它抛出错误
ByteArray objects cannot be converted to strings.
我也尝试使用
#toString(imageGetBlob(imdata))#
仍然没有成功。我已经通过https://forums.adobe.com/thread/60629,但是找不到任何解决方案。
最佳答案
最后,我解决了这个问题。我做的两件事是
我已经为数据源启用了BLOB设置。
我终于用了这个查询<cfquery datasource="localdsn"> INSERT INTO imtbl(image) VALUES ( <cfqueryparam cfsqltype="cf_sql_blob" value="#fileReadBinary('C:\inetpub\wwwroot\a.jpg')#"> )</cfquery>
关于sql-server - 如何在SQL Server 2008中存储图像Blob数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28301177/