當前位置:首頁 » 操作系統 » 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-07-01 08:09:59 瀏覽:156
安卓系統date什麼意思 發布:2025-07-01 07:58:06 瀏覽:482
linuxtr 發布:2025-07-01 07:57:59 瀏覽:657
假裝編程 發布:2025-07-01 07:39:44 瀏覽:214
python項目開發實例 發布:2025-07-01 07:39:44 瀏覽:63
php字元串截取中文 發布:2025-07-01 07:26:46 瀏覽:436
8266連接阿里雲伺服器 發布:2025-07-01 07:23:38 瀏覽:4
php提交方式 發布:2025-07-01 07:23:36 瀏覽:355
對java理解 發布:2025-07-01 07:22:16 瀏覽:911
我的世界逆編譯 發布:2025-07-01 07:12:14 瀏覽:772