您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何使用.NET向SQL Server數據庫存取圖片”,在日常操作中,相信很多人在如何使用.NET向SQL Server數據庫存取圖片問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用.NET向SQL Server數據庫存取圖片”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
使用.NET向SQL Server數據庫存取圖片
使用.Net技術,我們可以很方便的將圖片存入SQL Server數據庫中并方便的讀取顯示出來,詳細的實現方法我們一步一步將會了解到。先說如何將圖片存儲到sql server數據庫中:
.NET向SQL Server數據庫存取圖片技巧:存入圖片
使用asp.net將圖片上傳并存入SQL Server中,然后從SQL Server中讀取并顯示出來:
1)上傳并存入SQL Server
數據庫結構
create table test { id identity(1,1), FImage image }
相關的存儲過程
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) { //獲得圖象并把圖象轉換為byte[] HttpPostedFile upPhoto=UpPhoto.PostedFile; int upPhotoLength=upPhoto.ContentLength; byte[] PhotoArray=new Byte[upPhotoLength]; Stream PhotoStream=upPhoto.InputStream; PhotoStream.Read(PhotoArray,0,upPhotoLength); //連接數據庫 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; //如果你希望不使用存儲過程來添加圖片把上面四句代碼改為: //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數據庫存取圖片技巧:從SQL Server中讀取并顯示出來
在需要顯示圖片的地方添加如下代碼:
< 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";//這里假設獲取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(); } }
到此,關于“如何使用.NET向SQL Server數據庫存取圖片”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。