在 bytea 列上插入图像
我正在使用(我有义务使用)npgsql 驱动程序使用 vb.net 代码在 postgresql 数据库的 bytea 列上插入图像。
成功插入第一个后,我尝试插入第二个,它完成后我再次插入第一个,它会继续,直到我重置iis。
关于如何处理这个问题的任何想法。
Dim cnnstr As String
cnnstr = System.Configuration.ConfigurationManager.ConnectionStrings.Item("DMS_ConnectionString").ConnectionString
Dim conn As NpgsqlConnection = New NpgsqlConnection(cnnstr)
conn.Open()
Dim command As NpgsqlCommand = New NpgsqlCommand("UPDATE ""FILES"" SET ""CONTENT""= :content WHERE ""ID""={0};", conn)
Dim param As NpgsqlParameter = New NpgsqlParameter(":content", NpgsqlDbType.Bytea)
param.Value = content
command.Parameters.Add(param)
command.ExecuteNonQuery()
conn.Close()
提前致谢。
i am using (i am obligated to use) npgsql driver to insert images on bytea column in postgresql db using vb.net code.
after inserting the first one successfully, i try to insert the second one it finished that i have inserted the first one again, it continues until i have reset the iis.
any ideas on how to deal this issue.
Dim cnnstr As String
cnnstr = System.Configuration.ConfigurationManager.ConnectionStrings.Item("DMS_ConnectionString").ConnectionString
Dim conn As NpgsqlConnection = New NpgsqlConnection(cnnstr)
conn.Open()
Dim command As NpgsqlCommand = New NpgsqlCommand("UPDATE ""FILES"" SET ""CONTENT""= :content WHERE ""ID""={0};", conn)
Dim param As NpgsqlParameter = New NpgsqlParameter(":content", NpgsqlDbType.Bytea)
param.Value = content
command.Parameters.Add(param)
command.ExecuteNonQuery()
conn.Close()
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我所要做的就是清除参数。
无论如何,谢谢!
All i have to do was to clear the paramaters.
Thanx, anyway!