以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何读取动态创建的DataTable 里的二进制图片列里的图片 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=157275) |
-- 作者:ehbx_ysj -- 发布时间:2020/10/10 14:47:00 -- 如何读取动态创建的DataTable 里的二进制图片列里的图片 |
-- 作者:有点蓝 -- 发布时间:2020/10/10 14:56:00 -- 使用sql,如 Dim cmd As new SQLCommand cmd.ConnectionName = "T" cmd.CommandText="select top 1 第八列 from {表A}" \'这里第八列是二进制列 Dim dt As DataTable = cmd.ExecuteReader Dim src As String If dt.DataRows.Count >0 Then Dim bs As Byte() = dt.DataRows(0)("第八列") Dim stream As System.IO.Stream = New System.IO.MemoryStream(bs) Dim bmp As System.Drawing.Bitmap = New System.Drawing.Bitmap(stream) Dim pbx As WinForm.PictureBox = Forms("窗口1").Controls("PictureBox1 pbx.Image = bmp End If |
-- 作者:jjcrazy -- 发布时间:2020/10/21 15:31:00 -- 老师,我要读取SQL 二进制PDF列呢,怎么改 |
-- 作者:有点蓝 -- 发布时间:2020/10/21 15:38:00 -- cmd.CommandText="select top 1 PDF from {表A}" |