私はここに私のプロジェクトがあります。vb2010フォーム。このエラーが発生します:
「NullReferenceExceptionが処理されませんでした」
なぜ私はそれを得るのですか?
これは私のコードです。
Private Sub RefreshData()
If Not con.State = ConnectionState.Open Then
con.Open()
End If
Dim da As New OleDb.OleDbDataAdapter("SELECT ID as [ID], " & _
"fname as [NAME], lname" & _
"FROM asdf ORDER by ID", con)
da.Fill(ds.Tables("asdf"))**** this part is where i get the error*****
con.Close()
End Sub