怎么向sql server数据库插入二进制流 c#

 我来答
du瓶邪
2015-06-16 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:2981万
展开全部

使用DataSet插入二进制字段:

myConn.Open();
 DataSet tempDataSet=new DataSet();
 SqlDataAdapter tempAdapter = new SqlDataAdapter("SELECT * FROM EP_HmSoftOfficeDocList WHERE 1=0", myConn);
 SqlCommandBuilder tempBuilder=new SqlCommandBuilder(tempAdapter);   
 tempAdapter.Fill(tempDataSet);
 //'插入一条记录    
 DataRow tempDataRow = tempDataSet.Tables[0].NewRow();
 tempDataRow["DocumentType"] =DocumentType;
 tempDataRow["DocumentDate"] =DocumentDate;
 tempDataRow["DocumentManager"] =DocumentManager;
 tempDataRow["DocumentDepartment"] =DocumentDepartment;
 tempDataRow["DocumentTitle"] =DocumentTitle;
 tempDataRow["DocumentContent"] =DocumentContent;
 tempDataRow["BinaryFileData"] =BinaryFileData;   
 tempDataRow["BinaryFileType"] =BinaryFileType;
 tempDataRow["BinaryFileLength"] =BinaryFileLength;
 tempDataRow["BinaryFilePath"] =BinaryFilePath;
 tempDataRow["AddUserName"] =strAddUser;
 tempDataRow["AddUserTime"] =strAddTime;
 tempDataRow["AddUserIP"] =strAddIP;
 tempDataSet.Tables[0].Rows.Add(tempDataRow);
 tempAdapter.Update(tempDataSet);
IcebeareM
2014-02-16 · TA获得超过660个赞
知道小有建树答主
回答量:1235
采纳率:0%
帮助的人:361万
展开全部
        public static int 执行SQL返回受影响的行(string sql, byte[] byt)
        {
            try
            {
                int i1 = 0;
                SqlCommand cmd = new SqlCommand(sql, con);

                SqlParameter spFile = new SqlParameter("@file", SqlDbType.Image);
                spFile.Value = byt;
                cmd.Parameters.Add(spFile);

                con.Open();
                i1 = cmd.ExecuteNonQuery();
                con.Close();
                return i1;
            }
            catch (System.Exception ex)
            {
                错误信息 = ex.ToString();
                con.Close();
                return 0;
            }
        }

 这是执行的方法,你看下,能否明白!?

sql存放数据需要Image类型。

本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
baby3001
2014-02-16 · 超过34用户采纳过TA的回答
知道答主
回答量:193
采纳率:100%
帮助的人:94.7万
展开全部
你数据定义类型必须是Varbinary
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式