利用DataSet存取SQL Server中的二進位檔案

來源:互聯網
上載者:User
server|二進位 利用DataSet存取SQL Server中的二進位檔案



作者 朱二


利用DataSet可以方便的對SQL Server中的二進位檔案進行存取與更新操作,下面是詳細的代碼示範

示範環境:

資料庫機器名 :s_test
登陸名 :sa
密碼 :7890
資料庫名 db_test

下面建立一個表:
create table tb_test(id int identity(1,1),photo image ,constraint pk_tb_test primary key(id))
一、將硬碟上的檔案儲存至資料庫(VB.NET)


'----------------------------------------------------------
'----------------------------------------------------------
'下面的樣本將c:\1.jpg檔案儲存至資料庫的tb_test表中
'----------------------------------------------------------
'----------------------------------------------------------
Imports System.IO
Imports System.Data.SqlClient

Public Class image
Shared Sub Main()

'讀入檔案資料
Dim fs = New FileStream("c:\1.jpg", IO.FileMode.Open, IO.FileAccess.Read)
Dim imgData(fs.Length - 1) As Byte
fs.Read(imgData, 0, fs.Length - 1)
fs.close()

Dim tempConnection As New SqlConnection
Dim tempAdapter As SqlDataAdapter
Dim tempDataSet As New DataSet
'開啟資料庫連接
tempConnection.ConnectionString = "server=s_Test;uid=sa;pwd=7890;database=db_test"
tempConnection.Open()
tempAdapter = New SqlDataAdapter("SELECT * FROM tb_test WHERE 1=0", tempConnection)
Dim cb As New SqlCommandBuilder(tempAdapter)
tempAdapter.Fill(tempDataSet)
'插入一條記錄
Dim tempDataRow As DataRow
tempDataRow = tempDataSet.Tables(0).NewRow()
tempDataRow("photo") = imgData
tempDataSet.Tables(0).Rows.Add(tempDataRow)
tempAdapter.Update(tempDataSet)
tempConnection.Close()
End Sub
End Class
二、將資料庫中的檔案儲存至硬碟(VB.NET)

'----------------------------------------------------------
'----------------------------------------------------------
'下面的樣本將資料庫的tb_test表中第一條記錄的photo儲存至c:\2.jpg
'----------------------------------------------------------
'----------------------------------------------------------
Imports System.IO
Imports System.Data.SqlClient

Public Class image
Shared Sub Main()

Dim tempConnection As New SqlConnection
Dim tempAdapter As SqlDataAdapter
Dim tempDataSet As New DataSet
'開啟資料庫連接,取出資料
tempConnection.ConnectionString = "server=s_test;uid=sa;pwd=7890;database=db_test"
tempConnection.Open()
tempAdapter = New SqlDataAdapter("SELECT TOP 1 * FROM tb_test", tempConnection)
tempAdapter.Fill(tempDataSet)
tempConnection.Close()

If tempDataSet.Tables(0).Rows.Count > 0 Then
'將檔案儲存到硬碟檔案c:\2.jpg
Dim imgData() As Byte
imgData = tempDataSet.Tables(0).Rows(0).Item("photo")
Dim fs As FileStream
fs = File.Create("c:\2.jpg", imgData.Length - 1)
fs.Write(imgData, 0, imgData.Length - 1)
fs.Close()
End If
End Sub
End Class


三、更新資料庫中儲存的檔案


'----------------------------------------------------------
'----------------------------------------------------------
'下面的樣本用將資料庫的tb_test表中第一條記錄的photo更新為c:\2.jpg
'----------------------------------------------------------
'----------------------------------------------------------
Imports System.IO
Imports System.Data.SqlClient

Public Class image
Shared Sub Main()

'讀取檔案
Dim fs = New System.IO.FileStream("c:\2.jpg", IO.FileMode.Open, IO.FileAccess.Read)
Dim imgData(fs.Length - 1) As Byte
fs.Read(imgData, 0, fs.Length - 1)
fs.close()

Dim tempConnection As New SqlConnection
Dim tempAdapter As SqlDataAdapter
Dim tempDataSet As New DataSet
'開啟資料庫連接,取出資料
tempConnection.ConnectionString = "server=s_test;uid=sa;pwd=7890;database=db_test"
tempConnection.Open()
tempAdapter = New SqlDataAdapter("SELECT TOP 1 * FROM tb_test", tempConnection)
tempAdapter.Fill(tempDataSet)
'更新資料
Dim cb As New SqlCommandBuilder(tempAdapter)
tempDataSet = New DataSet
tempAdapter.Fill(tempDataSet)
tempDataSet.Tables(0).Rows(0).Item("photo") = imgData
tempAdapter.Update(tempDataSet)
tempConnection.Close()
End Sub
End Class

總結:

利用DataSet可以方便的對SQL Server中的二進位檔案進行存取與更新操作,雖不是最有效方法,但通過文本的介紹,可使初學者多掌握一種對 資料庫中的二進位檔案進行操作的方法,希望對開發人員有所協助。
vvvv

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.