我们有自己的基于 Microsoft Enterprise Data Access 块的 DataAccess 库。
我有将二进制文件内容作为输入参数并将其存储到数据库中的存储过程。
byte[] imageFileByteArray = this.GetByteArrayFromFile(imageFile);
this.dataAccess.AddCmdParameter("DOCIMAGE", System.Data.DbType.Binary, imageFileByteArray);
此代码在使用 SQL 数据库时工作正常,但是当我切换到 Oracle 时,我收到异常说“参数类型错误”
在 oracle db 中,DOCIMAGE 列被声明为 BLOB 字段。
为什么推断 Dbtype.Binary 不适用于 oracle?