Can't find ISAM file
I want to check if a record exists in a Access database. When I try to open a connection I get an error message (Could not find installable ISAM file). I could use some help here.
The code:
Dim conUser As Data.OleDb.OleDbConnection
Dim cmdKiesGebruiker As Data.OleDb.OleDbCommand
Dim dtrGegevens As Data.OleDb.OleDbDataReader
conUser = New Data.OleDb.OleDbConnection("Provider=Microsoft.Jet .OLEDB.4.0;" & "DataSource=" & Server.MapPath("~/App_Data/Algemeen.mdb"))
conUser.Open()
|