[求助]请问用把二进制数据存入Oracle的方法
请问用c#把二进制数据存入Oracle数据库的Blob类型的方法本人转化图片为二进制的代码如下
//图片转化为二进制形式
private byte[] ImageToData(string fullpath)
{
byte[] imagebytes = null;
FileStream fs = new FileStream(fullpath, FileMode.Open);
BinaryReader br = new BinaryReader(fs);
imagebytes = br.ReadBytes((int)fs.Length);
fs.Close();
return imagebytes;
}
请问把imagebytes返回的数据存入Oracle数据库的Blob类型的方法.