When I connect to the Access Database through VB and try to access the records, it gives me the error :
Run-time error '-2147467259 (80004005)'
Couldn't find installable ISAM
What could be the problem. I am running Access 97 on Win2K.
' *****************************
' The code is as follows
' *****************************
Dim accessConn As New ADODB.Connection
Dim accessRs As New ADODB.Recordset
Dim accSql as String
' --- The Connection string for connecting to the Access Database
accConnStr = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data Source=D:\PostgreSQL\Data\GPRSSub.mdb"
' --- Get connected to the database
accessConn.Open accConnStr
accSql = "Select Date, GPRS_Sub from MonthlySub"
accessRs.Open accSql, accessConn
Run-time error '-2147467259 (80004005)'
Couldn't find installable ISAM
What could be the problem. I am running Access 97 on Win2K.
' *****************************
' The code is as follows
' *****************************
Dim accessConn As New ADODB.Connection
Dim accessRs As New ADODB.Recordset
Dim accSql as String
' --- The Connection string for connecting to the Access Database
accConnStr = "Provider=Microsoft.Jet.OLEDB.3.51;Persist Security Info=False;Data Source=D:\PostgreSQL\Data\GPRSSub.mdb"
' --- Get connected to the database
accessConn.Open accConnStr
accSql = "Select Date, GPRS_Sub from MonthlySub"
accessRs.Open accSql, accessConn