473,396 Members | 2,024 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Could Not Find Installable ISAM

I continue to get the below error message when trying to load a aspx
file. Could someone please point me in the right direction for solving
this? I'm trying to access an access data base and I'm the only one
accessing it at this time. I'm trying to learn this step by step and I'm
at the begining of ADO stuff.

Server Error in '/' Application.
------------------------------------------------------------------------
--------

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.

Source Error:

Line 10: OleDbDataReader objReader;
Line 11:
Line 12: objConn.Open();
Line 13: objReader = objCmd.ExecuteReader();
Line 14:
Source File: c:\inetpub\wwwroot\day10\listing1004c.aspx Line: 12

Stack Trace:

[OleDbException (0x80004005): Could not find installable ISAM.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
ASP.listing1004c_aspx.Page_Load(Object Sender, EventArgs e) in
c:\inetpub\wwwroot\day10\listing1004c.aspx:12
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


------------------------------------------------------------------------
--------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #1
6 6807
The parameters you used for initializing the "objConn" may be wrong. Could
you list out how you are doing this.

Shaji
www.DiverseInc.com

"Robert Lawson" <tw*********@mchsi.com> wrote in message
news:ug**************@TK2MSFTNGP12.phx.gbl...
I continue to get the below error message when trying to load a aspx
file. Could someone please point me in the right direction for solving
this? I'm trying to access an access data base and I'm the only one
accessing it at this time. I'm trying to learn this step by step and I'm
at the begining of ADO stuff.

Server Error in '/' Application.
------------------------------------------------------------------------
--------

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.

Source Error:

Line 10: OleDbDataReader objReader;
Line 11:
Line 12: objConn.Open();
Line 13: objReader = objCmd.ExecuteReader();
Line 14:
Source File: c:\inetpub\wwwroot\day10\listing1004c.aspx Line: 12

Stack Trace:

[OleDbException (0x80004005): Could not find installable ISAM.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
ASP.listing1004c_aspx.Page_Load(Object Sender, EventArgs e) in
c:\inetpub\wwwroot\day10\listing1004c.aspx:12
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


------------------------------------------------------------------------
--------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 17 '05 #2
Thanks for your quick reply. The code is below. I've tried it in Visual
Basic and C# and get the same response.

I really appreciate your response and help.

Doug Lawson

<%@ Page Language="C#" Debug="true" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="System.Data.OleDb" %>
<script runat="server">

void Page_Load(Object Sender, EventArgs e){
OleDbConnection objConn = new
OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; DataSource=c:\\ASPNET\
\banking.bdb");
OleDbCommand objCmd = new OleDbCommand("select * from tblUsers",
objConn);

OleDbDataReader objReader;

objConn.Open();
objReader = objCmd.ExecuteReader();

while (objReader.Read()){
Response.Write(objReader.GetString(0) + "<br>");
}
objConn.Close();
}

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<!-- Insert content here -->
</form>
</body>
</html>

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #3
In news:uA**************@TK2MSFTNGP10.phx.gbl,
Robert Lawson wrote:
<snipped>
OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; DataSource=c:\\ASPNET\
\banking.bdb");
</end snip>

Should this be a connection to banking.mdb?

Mark
--

Nov 17 '05 #4
Was it this?

PRB: "Could Not Find Installable ISAM" (0x80004005) Error Message When You Try
to Set Session-Level Jet Properties

http://support.microsoft.com/default...;en-us;Q318161

--
Microsoft MVPs have a question for *you*: Are you patched against the Worm?
http://www.microsoft.com/security/se...s/ms03-026.asp

"Robert Lawson" <tw*********@mchsi.com> wrote in message
news:ug**************@TK2MSFTNGP12.phx.gbl...
I continue to get the below error message when trying to load a aspx
file. Could someone please point me in the right direction for solving
this? I'm trying to access an access data base and I'm the only one
accessing it at this time. I'm trying to learn this step by step and I'm
at the begining of ADO stuff.

Server Error in '/' Application.
------------------------------------------------------------------------
--------

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.

Source Error:

Line 10: OleDbDataReader objReader;
Line 11:
Line 12: objConn.Open();
Line 13: objReader = objCmd.ExecuteReader();
Line 14:
Source File: c:\inetpub\wwwroot\day10\listing1004c.aspx Line: 12

Stack Trace:

[OleDbException (0x80004005): Could not find installable ISAM.]
System.Data.OleDb.OleDbConnection.ProcessResults(I nt32 hr) +20
System.Data.OleDb.OleDbConnection.InitializeProvid er() +57
System.Data.OleDb.OleDbConnection.Open() +203
ASP.listing1004c_aspx.Page_Load(Object Sender, EventArgs e) in
c:\inetpub\wwwroot\day10\listing1004c.aspx:12
System.Web.UI.Control.OnLoad(EventArgs e) +67
System.Web.UI.Control.LoadRecursive() +35
System.Web.UI.Page.ProcessRequestMain() +731


------------------------------------------------------------------------
--------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #5
Should this be a connection to banking.mdb? Yes

I've been trying to implement the following code
Dim cnn As New ADODB.Connection
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;"
cnn.Properties("Jet OLEDB:Max Buffer Size") = 256

But for some reason I can't get the syntax correct for Visual Basic.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #6
Mark;
I don't know what is going on but no matter what I do I can't get past
the error message. The other thing I was trying to do just complicated
things and really had nothing to do with what I was trying to do. I
wasn't trying to set any properties I was only trying to access the data
and print it out. No matter where I go the code seems to be the same.
I'm totally lost on this and can't move forward until I have an
understanding of what's going on. Have any ideas?

Doug

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 17 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Steve | last post by:
I get a "Could Not Find Installable ISAM" error on my objConn.open() statement. I suspect my connection string is bad. What I am trying to do is open an Excel file on my local computer from my...
10
by: Brent | last post by:
Hi, my asp.net c# app is trying to connect to an Access database with a password and am I getting the error.. Could not find installable ISAM. . If I connect to one without a password it works...
1
by: Steve | last post by:
I get a "Could Not Find Installable ISAM" error on my objConn.open() statement. I suspect my connection string is bad. What I am trying to do is write to an Excel file on my local computer from a...
1
by: Karl Irvin | last post by:
In the module below, I get a "Could not find installable ISAM" error on the tdf.refresh link. The NewConnection refers to a valid database/table. My References include VBA, Access 9.0 Object...
2
by: Horst Walter | last post by:
I am using C# / ADO.NET to create an Excel sheet: This connection string works: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filename + ";" + "Extended Properties=Excel 8.0;"; This...
1
by: JP Lacasse | last post by:
I translate a web application from ASP to ASP.NET and I keep getting the following error: Could not find installable ISA I used the same ConnectString ("DBQ=" &...
1
by: Roger Twomey | last post by:
I have a form that allows a user to upload a microsoft Excel Spreadsheet. (I am testing with one created in Excel 2000) The spreadsheet is uploaded correctly. It is then supposed to be read...
2
by: Henrik | last post by:
Hello I starting use ASP.NET and has created a new file to open a Access database I get these error and cant solve it - please need some help. I Use Windows 2000 (have also tried to put it...
1
by: Anatoly Kurilin | last post by:
Hi, each time I use that code for calculating a number of user connected to a data file, I get an error message: Could not find installable ISAM. What do I do wrong? Dim cn As New...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.