iPhone App Con Sept 27 -- www.iphonedevcon.com
Wrox Programmer Forums

Need to download code?

View our list of code downloads.

Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 1.0 and 1.1 > ASP.NET 1.0 and 1.1 Basics
I forgot my password
Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of tens of thousands of software programmers and website developers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other developers’ questions, win occasional prizes given to our best members, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
DRM-free e-books 300x50
Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old August 25th, 2003, 04:01 PM
Registered User
Points: 45, Level: 1
Points: 45, Level: 1 Points: 45, Level: 1 Points: 45, Level: 1
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Aug 2003
Location: , , .
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Could not find installable ISAM

When I was trying to read from an Access database Northwind, I got the following error message:

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 29: OleDbCommand objCommand = new OleDbCommand(strSQL, objConnection);
Line 30:
Line 31: objConnection.Open();
Line 32: dgSuppliers.DataSource = objCommand.ExecuteReader();
Line 33: dgSuppliers.DataBind();

My operating system is Windows XP professional and I'm using MSV.NET. Anyone can give me a clue?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #2 (permalink)  
Old August 25th, 2003, 09:09 PM
Authorized User
Points: 249, Level: 4
Points: 249, Level: 4 Points: 249, Level: 4 Points: 249, Level: 4
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: Quezon City, MM, Philippines.
Posts: 97
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to planeswalk
Default

Hi,

If youare using MS Access 2002, perhaps the following article can help:

http://support.microsoft.com/default...b;EN-US;283881

Cheers!


Marlon Villarama
Support Team
Web Burner Hosting
marlon@webburner.com
www.webburner.com
Toll-Free: 877-535-2876
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #3 (permalink)  
Old August 26th, 2003, 03:36 AM
Friend of Wrox
Points: 222, Level: 4
Points: 222, Level: 4 Points: 222, Level: 4 Points: 222, Level: 4
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: Sydney, NSW, Australia.
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
Default

You usually get this error when your connection string has a parameter value that does not exist, eg "Provider=Microsoft.Jet.OLEDB.4.0;Foo=Bar;"

Please post your connection string.

Cheers
Ken

www.adOpenStatic.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #4 (permalink)  
Old September 5th, 2003, 07:07 AM
Authorized User
Points: 58, Level: 1
Points: 58, Level: 1 Points: 58, Level: 1 Points: 58, Level: 1
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Aug 2003
Location: , , .
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

this may be connection string problem try to change as below

conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & txtSource.Text & ";Jet OLEDB:Database Password=" & pwd.txt & ";"

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #5 (permalink)  
Old December 26th, 2005, 08:48 AM
Registered User
 
Join Date: Dec 2005
Location: Beirut, , Lebanon.
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hello everybody,
i am reading Vb.net databases, and i came through chapter and i have written the code top open an access file database. i run the program and when i try to open the database this messages occurs "could not find intallable ISAM"
 some one help :)
this is my connection string
 objconnection = New OleDbConnection("provider= microsoft.jet.oledb.4.0;" & "datasource=" & txtDatabase.Text & " ; ")
thank Yiu
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #6 (permalink)  
Old December 26th, 2005, 10:12 PM
Friend of Wrox
Points: 447, Level: 7
Points: 447, Level: 7 Points: 447, Level: 7 Points: 447, Level: 7
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Dec 2005
Location: Colombo, , Sri Lanka.
Posts: 129
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to nalla Send a message via Yahoo to nalla
Default



Hi,

Give your access database's name with the full path to the datasource parameter in your connection string

Eg:-

objconnection = New OleDbConnection("provider= microsoft.jet.oledb.4.0;" & "datasource=" C:\Data\Northwind.mdb " ; ")

nalla



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #7 (permalink)  
Old April 14th, 2006, 07:01 AM
Registered User
 
Join Date: Apr 2006
Location: , , .
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

The error is because of wrong connection string.
use string in format like this:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=FPAnalysisTool.mdb"

There should be a blank space between Data and Source.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #8 (permalink)  
Old February 18th, 2007, 01:36 PM
Registered User
 
Join Date: Feb 2007
Location: Hauz Khas New Delhi, Delhi, India.
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

hi prasadrn. Thanks for that solution. I was banging my head trying to solve from the suggestions at msdn kb. didn't notice that space. Your solution was very useful. I have posted it on my blog too.

Science is my God and Humanity, my religion
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #9 (permalink)  
Old April 19th, 2007, 02:51 AM
Authorized User
 
Join Date: Mar 2007
Location: Dubai, dubai, United Arab Emirates.
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Default

[u]KenSchaefer</u> is also correct, some times it gives error due to wrong parameters in connection string.


I Love XML and family
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #10 (permalink)  
Old May 2nd, 2007, 12:35 AM
Registered User
 
Join Date: May 2007
Location: , , .
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi

I am N.Ramasamy. I am working as a programmer. To connect oledb with MS Access, we want to write the query string as follows

string qs = @"PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source=e:\db\names.mdb";

 one important thing is we want to give space in between DAtA and Source

I have created one database named as names.mdb and it has name as a table.

The name table has the following fields

  1.ID
  2. Name

the database placed within e:\db

coding

string qs = @"PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA Source=e:\db\names.mdb";
        OleDbConnection con = new OleDbConnection(qs);
        con.Open();
        OleDbCommand com = new OleDbCommand( "select * from name", con);
        OleDbDataReader reader =com.ExecuteReader();
        while (reader.Read())
        {
            Response.Write("<br>" + reader["ID"]);

            Response.Write("<br>" + reader["Name"]);
        }


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Error: Could not find installable ISAM dummy Classic ASP Basics 0 May 16th, 2007 02:36 AM
"Could not find installable ISAM" evidica ASP.NET 1.0 and 1.1 Basics 3 March 12th, 2007 11:27 AM
Could not find installable isam Johno13 BOOK: Beginning VB.NET Databases 1 October 5th, 2006 11:46 AM
Couldnot find installable ISAM jitheshsunny ASP.NET 1.x and 2.0 Application Design 1 February 1st, 2006 02:08 PM
Couldn't find installable ISAM exception RanceR ASP.NET 1.1 1 August 1st, 2004 01:54 PM



All times are GMT -4. The time now is 03:47 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
© 2010 Wiley Publishing, Inc