當前位置:首頁 » 操作系統 » 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

熱點內容
d盤無法訪問參數不正確 發布:2025-09-17 06:30:36 瀏覽:466
為什麼徵兵網無法訪問 發布:2025-09-17 06:19:31 瀏覽:373
mysqlsql語句變數賦值 發布:2025-09-17 06:19:26 瀏覽:34
真我3i什麼配置 發布:2025-09-17 06:17:59 瀏覽:138
輸入有效的伺服器地址ip 發布:2025-09-17 06:17:26 瀏覽:437
德育源碼 發布:2025-09-17 06:16:00 瀏覽:103
低價虛擬機ftp伺服器租用公司 發布:2025-09-17 06:14:23 瀏覽:887
戴爾筆記本電腦開機密碼是多少 發布:2025-09-17 06:03:14 瀏覽:444
ac68u外網訪問 發布:2025-09-17 05:33:12 瀏覽:905
真我手機如何修改登錄密碼 發布:2025-09-17 05:20:26 瀏覽:317