aspx_beginners thread: Could not find installable ISAM
Message #1 by "Michael Chung" <yh2chung@s...> on Thu, 27 Sep 2001 20:00:43
|
|
Can anyone tell me a fix for this problem?
I am running win2k and IIS 5 with the beta 2.
I am trying to connect to a access 2000 db but I am stuck. Here is the
message I am getting.
"
Could not find installable ISAM.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Could not find
installable ISAM.
"
Any fix would be much appreciated
Message #2 by Scott Watermasysk <swatermasysk@C...> on Thu, 27 Sep 2001 15:19:25 -0400
|
|
It might help if you forwarded your code to the list.
-----Original Message-----
From: Michael Chung [mailto:yh2chung@s...]
Sent: Thursday, September 27, 2001 4:01 PM
To: aspx_beginners
Subject: [aspx_beginners] Could not find installable ISAM
Can anyone tell me a fix for this problem?
I am running win2k and IIS 5 with the beta 2.
I am trying to connect to a access 2000 db but I am stuck. Here is the
message I am getting.
"
Could not find installable ISAM.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.
Exception Details: System.Data.OleDb.OleDbException: Could not find
installable ISAM.
"
Any fix would be much appreciated
Message #3 by "Michael Chung" <yh2chung@s...> on Thu, 27 Sep 2001 21:08:46
|
|
Here is the code:
Dim objDbConnection as OleDBConnection
Dim objDbCommand as OleDbCommand
Dim objDbDataReader as OleDbDataReader
objDbConnection = new OleDbConnection
("server=localhost;database=PPM;provider=microsoft.jet.oledb.4.0;")
objDbConnection.Open() <----- It breaks right here.
objDbCommand = new OleDbCommand(strSqlString, objDbConnection)
objDbDataReader = objDbCommand.ExecuteReader()
Any help would be most appreciated
> It might help if you forwarded your code to the list.
|