Link to home
Start Free TrialLog in
Avatar of Rick4848
Rick4848

asked on

Could not find Installable ISAM

The below produces this error on the Open - System.Data.OleDb.OleDbException: Could not find installable ISAM.
Dim myConnectionString As String = "PROVIDER=Microsoft.Jet.OLEDB.4.0;" & _
    "DataSource=d:\securesite\usersworkarea\rick\blank.mdb"

   
    Dim mySelectQuery As String = "SELECT Totals FROM visits2"

 
    Dim myConnection As New OleDbConnection(myConnectionString)

   
    Dim myCommand As New OleDbCommand(mySelectQuery, myConnection)

   
    myCommand.Connection.Open()

Can anyone help?
ASKER CERTIFIED SOLUTION
Avatar of Sicos
Sicos

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial