C# 二進位儲存圖片到mssql(一)

來源:互聯網
上載者:User

今天剛學如何在mssql資料庫中儲存圖片,決定留下筆記,以免後忘。

SQL Server的聯機叢書提供三種位元據類型的使用條件說明:

1.當表列的所有輸入資料大小為固定值(且長度小於8000位元組)時,使用標準二進位Binary資料類型;

2.當表列的輸入資料長度有很大差別(且長度均小於8000位元組)時,使用varBinary資料類型;

3.當表列輸入資料長度超過8000位元組時,使用varBinary(max) 資料類型。

這次利用varBinary(MAX)資料類型儲存圖片:

  我先在mssql資料庫直接測試如下:

     INSERT INTO [blog].[dbo].[img](data)

     SELECT BulkColumn

     FROM OPENROWSET(Bulk 'G:\VS test\WebSites\mail\images\1.gif', SINGLE_BLOB) AS BLOB

     //  結果顯示成功

 OPENROWSET語句允許SQL從外部資料源提供者來存取資料。Bulk是特別為OPENROWSET插入檔案和映像而設計的資料來源提供者.

接著是在aspx頁面中顯示圖片:

前台頁面: 

    <form id="form1" runat="server">
    <div>
        <asp:Image ID="Image1" runat="server" ImageUrl="~/images/12.gif" />
        <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
       
    </div>
    </form>

 aspx.cs代碼如下:

    protected void Button1_Click(object sender, EventArgs e)
    {
        string Str = "server=(local); user=grid; database=blog; password=grid";
        SqlConnection conn = new SqlConnection(Str);
        //string cmd = "insert into img(img) values ()";
        conn.Open();
        string cmd = "select data from img";
        SqlCommand com = new SqlCommand(cmd,conn );
        com.CommandType = CommandType.Text;
        SqlDataReader dr = com.ExecuteReader();
        dr.Read();
        Response.BinaryWrite((byte[])dr["data"]);
        conn.Close();
    }

 結果 點擊button顯示儲存的圖片成功。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.