溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片

發(fā)布時(shí)間:2021-07-15 15:23:04 來(lái)源:億速云 閱讀:203 作者:chen 欄目:編程語(yǔ)言

這篇文章主要介紹“如何使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片”,在日常操作中,相信很多人在如何使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片

使用.Net技術(shù),我們可以很方便的將圖片存入SQL Server數(shù)據(jù)庫(kù)中并方便的讀取顯示出來(lái),詳細(xì)的實(shí)現(xiàn)方法我們一步一步將會(huì)了解到。先說(shuō)如何將圖片存儲(chǔ)到sql server數(shù)據(jù)庫(kù)中:

.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片技巧:存入圖片

使用asp.net將圖片上傳并存入SQL Server中,然后從SQL Server中讀取并顯示出來(lái):

1)上傳并存入SQL Server

數(shù)據(jù)庫(kù)結(jié)構(gòu)

create table test   {   id identity(1,1),   FImage image   }

相關(guān)的存儲(chǔ)過(guò)程

Create proc UpdateImage   (   @UpdateImage Image   )   As   Insert Into test(FImage) values(@UpdateImage)   GO

在UpPhoto.aspx文件中添加如下:

< input id="UpPhoto" name="UpPhoto" runat="server" type="file">   < asp:Button id="btnAdd" name="btnAdd" runat="server" Text="上傳">< /asp:Button>

然后在后置代碼文件UpPhoto.aspx.cs添加btnAdd按鈕的單擊事件處理代碼:

private void btnAdd_Click(object sender, System.EventArgs e)   {   //獲得圖象并把圖象轉(zhuǎn)換為byte[]   HttpPostedFile upPhoto=UpPhoto.PostedFile;   int upPhotoLength=upPhoto.ContentLength;   byte[] PhotoArray=new Byte[upPhotoLength];   Stream PhotoStream=upPhoto.InputStream;   PhotoStream.Read(PhotoArray,0,upPhotoLength);   //連接數(shù)據(jù)庫(kù)   SqlConnection conn=new SqlConnection();   conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";   SqlCommand cmd=new SqlCommand("UpdateImage",conn);   cmd.CommandType=CommandType.StoredProcedure;   cmd.Parameters.Add("@UpdateImage",SqlDbType.Image);   cmd.Parameters["@UpdateImage"].Value=PhotoArray;   //如果你希望不使用存儲(chǔ)過(guò)程來(lái)添加圖片把上面四句代碼改為:   //string strSql="Insert into test(FImage) values(@FImage)";   //SqlCommand cmd=new SqlCommand(strSql,conn);   //cmd.Parameters.Add("@FImage",SqlDbType.Image);   //cmd.Parameters["@FImage"].Value=PhotoArray;   conn.Open();   cmd.ExecuteNonQuery();   conn.Close();   }

.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片技巧:從SQL Server中讀取并顯示出來(lái)

在需要顯示圖片的地方添加如下代碼:

< asp:image id="imgPhoto" runat="server" ImageUrl="ShowPhoto.aspx">< /asp:image>

ShowPhoto.aspx主體代碼:

private void Page_Load(object sender, System.EventArgs e)   {   if(!Page.IsPostBack)   {   SqlConnection conn=new SqlConnection()   conn.ConnectionString="Data Source=localhost;Database=test;User Id=sa;Pwd=sa";   string strSql="select * from test where id=2";//這里假設(shè)獲取id為2的圖片   SqlCommand cmd=new SqlCommand(strSql,conn);   conn.Open();  SqlDataReader reader=cmd.ExecuteReader();  reader.Read();   Response.ContentType="application/octet-stream";   Response.BinaryWrite((Byte[])reader["FImage"]);   Response.End();   reader.Close();   }   }

到此,關(guān)于“如何使用.NET向SQL Server數(shù)據(jù)庫(kù)存取圖片”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI