當前位置:首頁 » 操作系統 » img資料庫

img資料庫

發布時間: 2023-08-29 00:13:53

資料庫以img存儲,如何讀取圖片

直接使用企業管理器好像沒有辦法操作吧,通過軟體或自己做個小軟體讀取。

#region //讀取資料庫中圖片到內存.並顯示
public void LoadToMemoryAndDisable(string serverAdress, string database)
{
//讀取資料庫中圖片到內存.並顯示
SqlConnection conn = new SqlConnection("server=" + serverAdress + ";integrated security = sspi;database = " + database);
SqlCommand cmd = new SqlCommand("select * from imgtable where imgname like '%bmp%'", conn);
conn.Open();
SqlDataReader dr;
try
{
dr = cmd.ExecuteReader();
dr.Read();
System.Data.SqlTypes.SqlBinary sb = dr.GetSqlBinary(2);
//或byte[] imageData = (byte[])dr[2];
MemoryStream ms = new MemoryStream(sb.Value);//在內存中操作圖片數據
Bitmap bmp = new Bitmap(Bitmap.FromStream(ms));
this.pictureBox1.Image = bmp;
dr.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
conn.Close();
}
}
#endregion

熱點內容
海外移動賬號訪問 發布:2025-03-06 17:00:09 瀏覽:813
samba在伺服器搭建 發布:2025-03-06 16:53:35 瀏覽:168
圖片管理資料庫 發布:2025-03-06 16:51:05 瀏覽:978
用舊電腦搭建家用伺服器 發布:2025-03-06 16:48:54 瀏覽:250
台式電腦如何與安卓手機連接藍牙 發布:2025-03-06 16:48:47 瀏覽:815
奇博源碼 發布:2025-03-06 16:47:43 瀏覽:985
原油存儲罐 發布:2025-03-06 16:12:21 瀏覽:55
excel寫入sql 發布:2025-03-06 15:54:19 瀏覽:948
腳本自動加好友 發布:2025-03-06 15:54:19 瀏覽:408
仿朋友圈源碼 發布:2025-03-06 15:53:34 瀏覽:961