I am gettig "could not find installable isam" while connecting to access 2007 databse
the code that i wrote is:
Public Sub MyConnection()
constr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Contact_management\Contact_DB.accdb;Jet oledb:database password=abcd"
con = New OleDbConnection(constr)
If con.State = ConnectionState.Open Then
con.Close()
End If
con.Open()
End Sub
i installed office 2007 via network.
when i remove database password , m able to connect to database and when i set it i m unable to.
what would be a problem?