Dim SQL As String = "Select * from " & ComboBox.Text
Dim dts As DataTable = connectAcc(SQL).Tables(0)
DGView.DataSource = dts
อันนี้เป็น module ติดต่อฐานข้อมูลของผม
Code (VB.NET)
Imports System.Data
Imports System.Data.OleDb
Module connectDatabase
Public conStr As String = "Provider=Microsoft.JET.OLEDB.4.0;data source=" & filePatch & ";"
Public conn As OleDbConnection = New OleDbConnection(conStr)
Public Sub openConnection()
If conn.State = ConnectionState.Closed Then
conn.Open()
End If
End Sub
Public Function connectAcc(ByVal command As String) As DataSet
Dim a As New DataSet
a.Tables.Add(0)
Try
Dim da As OleDbDataAdapter = New OleDbDataAdapter(command, conn)
a.Tables.Clear()
da.Fill(a)
Catch ex As Exception
MessageBox.Show("Error" & ex.Message)
a.Tables.Clear()
a.Tables.Add(0)
Return a
End Try
Return a
End Function
End Module
Tag : - - - -
Date :
2009-11-12 13:35:03
By :
phisin
View :
1695
Reply :
2
No. 1
Guest
ลองดูครับ Ex. c# ดูไฟล์
Preview binary data store in sql server to cilent browser by Gridview
1. Set up Gridview in html tax.