我正在使用vb 10和访问数据库。在我的表单中,我有一个DataGridView和按钮(用于从我的数据库中检索数据)。
问题是当我单击按钮时,我的DataGridView中没有数据位置。即使我的数据库中有数据。
我看过很多代码,但它们是一样的。我正在使用OleDb进行连接。非常感谢你!
代码(在button_click下):
Private Sub cmdTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdTest.Click
con2.Open()
sql = "select * from AddressInfo"
Dim comm As New OleDb.OleDbCommand
comm.CommandText = sql
comm.Connection = con2
da.SelectCommand = comm
da.Fill(ds, "AddressInfo")
DataGridView.DataSource = ds.Tables("AddressInfo").DefaultView
con2.Close()
MsgBox("Success", MsgBoxStyle.Information)
End Sub