使用DataSet存取SQL Server中的二進制文件
發(fā)表時間:2024-06-14 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]利用DataSet存取SQL Server中的二進制文件作者 朱二 利用DataSet可以方便的對SQL Server中的二進制文件進行存取與更新操作,下面是詳細的代碼演示演示環(huán)境:數(shù)據(jù)庫機器名 :s_test登陸名 :sa密碼 :7890數(shù)據(jù)庫名 db_test下面建立一個表: create...
利用DataSet存取SQL Server中的二進制文件
作者 朱二
利用DataSet可以方便的對SQL Server中的二進制文件進行存取與更新操作,下面是詳細的代碼演示
演示環(huán)境:
數(shù)據(jù)庫機器名 :s_test
登陸名 :sa
密碼 :7890
數(shù)據(jù)庫名 db_test
下面建立一個表:
create table tb_test(id int identity(1,1),photo image ,constraint pk_tb_test primary key(id))
一、將硬盤上的文件保存至數(shù)據(jù)庫(VB.NET)
'----------------------------------------------------------
'----------------------------------------------------------
'下面的示例將c:\1.jpg文件保存至數(shù)據(jù)庫的tb_test表中
'----------------------------------------------------------
'----------------------------------------------------------
Imports System.IO
Imports System.Data.SqlClient
Public Class image
Shared Sub Main()
'讀入文件數(shù)據(jù)
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
'打開數(shù)據(jù)庫連接
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
二、將數(shù)據(jù)庫中的文件保存至硬盤(VB.NET)
'----------------------------------------------------------
'----------------------------------------------------------
'下面的示例將數(shù)據(jù)庫的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
'打開數(shù)據(jù)庫連接,取出數(shù)據(jù)
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
三、更新數(shù)據(jù)庫中保存的文件
'----------------------------------------------------------
'----------------------------------------------------------
'下面的示例用將數(shù)據(jù)庫的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
'打開數(shù)據(jù)庫連接,取出數(shù)據(jù)
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)
'更新數(shù)據(jù)
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
總結(jié):
利用DataSet可以方便的對SQL Server中的二進制文件進行存取與更新操作,雖不是最有效的方法,但通過文本的介紹,可使初學者多掌握一種對 數(shù)據(jù)庫中的二進制文件進行操作的方法,希望對開發(fā)者有所幫助。
vvvv