473,657 Members | 2,430 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Could not find installable ISAM.

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 fine. I've looked at Q209805
but I don't think that helped. Oledb connection. Here is the one that works
without a password.
OleDbConnection connection = new
OleDbConnection (@"Provider=Mic rosoft.Jet.OLED B.4.0;" +

@"Data Source=C:\db2.m db");

but add uid and pwd on one with a password and I get the error. Please help.
Nov 18 '05 #1
5 4060
can you post the cn string with the UID and PWD?
"Brent" <b@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
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 fine. I've looked at Q209805
but I don't think that helped. Oledb connection. Here is the one that works without a password.
OleDbConnection connection = new
OleDbConnection (@"Provider=Mic rosoft.Jet.OLED B.4.0;" +

@"Data Source=C:\db2.m db");

but add uid and pwd on one with a password and I get the error. Please help.

Nov 18 '05 #2
@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
Info=True;Jet OLEDB:Database PWD=abc;User ID=Admin"
also tried
@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
Info=True;PWD=a bc;User ID=Admin"
and
@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
Info=True;Jet OLEDB:Database PWD=abc;UID=Adm in"
"William Ryan eMVP" <do********@com cast.nospam.net > wrote in message
news:eB******** ******@tk2msftn gp13.phx.gbl...
can you post the cn string with the UID and PWD?
"Brent" <b@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
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 fine. I've looked at Q209805 but I don't think that helped. Oledb connection. Here is the one that

works
without a password.
OleDbConnection connection = new
OleDbConnection (@"Provider=Mic rosoft.Jet.OLED B.4.0;" +

@"Data Source=C:\db2.m db");

but add uid and pwd on one with a password and I get the error. Please

help.


Nov 18 '05 #3
On Thu, 29 Apr 2004 15:54:11 -0600, "Brent" <b@b.com> wrote:

¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
¤ Info=True;Jet OLEDB:Database PWD=abc;User ID=Admin"
¤ also tried
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
¤ Info=True;PWD=a bc;User ID=Admin"
¤ and
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
¤ Info=True;Jet OLEDB:Database PWD=abc;UID=Adm in"
¤

Looks like the Jet OLEDB argument is incomplete (in two of your examples) and the Password (not PWD)
parameter is incorrect:

@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Jet OLEDB:Engine Type=5;Persist Security
Info=True;User ID=Admin;Passwo rd=abc"

You may also need to include the path to the System.mdw file if you are implementing user level
security.
Paul ~~~ pc******@amerit ech.net
Microsoft MVP (Visual Basic)
Nov 18 '05 #4
Hmm, Man, I'm still having problems getting this to work. I have a database
password set, but I am not using user level security. What should my string
be for this? Right now I have the following string, but that gives me the
error that it needs the workgroup information file, which I am not using.
Please help. Thanks!
@"Provider=Micr osoft.Jet.OLEDB .4.0;" +

@"Data Source=C:\abc.m db;Jet OLEDB:Engine Type=5;Persist Security
Info=True;" +

@"Password=abc" );

"Paul Clement" <Us************ ***********@sws pectrum.com> wrote in message
news:ck******** *************** *********@4ax.c om...
On Thu, 29 Apr 2004 15:54:11 -0600, "Brent" <b@b.com> wrote:

¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security ¤ Info=True;Jet OLEDB:Database PWD=abc;User ID=Admin"
¤ also tried
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security ¤ Info=True;PWD=a bc;User ID=Admin"
¤ and
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security ¤ Info=True;Jet OLEDB:Database PWD=abc;UID=Adm in"
¤

Looks like the Jet OLEDB argument is incomplete (in two of your examples) and the Password (not PWD) parameter is incorrect:

@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Jet OLEDB:Engine Type=5;Persist Security Info=True;User ID=Admin;Passwo rd=abc"

You may also need to include the path to the System.mdw file if you are implementing user level security.
Paul ~~~ pc******@amerit ech.net
Microsoft MVP (Visual Basic)

Nov 18 '05 #5
Nevermind, I FINALLY got it. Here's what it was I needed....
@"Provider=Micr osoft.Jet.OLEDB .4.0;" +

@"Data Source=C:\db2.m db;Jet OLEDB:Engine Type=5;" +

@"Jet OLEDB:Database Password=abc");

I guess it was that I was providing a user password, instead of a database
password. :)

"Brent" <b@b.com> wrote in message
news:10******** *****@corp.supe rnews.com...
Hmm, Man, I'm still having problems getting this to work. I have a database password set, but I am not using user level security. What should my string be for this? Right now I have the following string, but that gives me the
error that it needs the workgroup information file, which I am not using.
Please help. Thanks!
@"Provider=Micr osoft.Jet.OLEDB .4.0;" +

@"Data Source=C:\abc.m db;Jet OLEDB:Engine Type=5;Persist Security
Info=True;" +

@"Password=abc" );

"Paul Clement" <Us************ ***********@sws pectrum.com> wrote in message
news:ck******** *************** *********@4ax.c om...
On Thu, 29 Apr 2004 15:54:11 -0600, "Brent" <b@b.com> wrote:

¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist Security
¤ Info=True;Jet OLEDB:Database PWD=abc;User ID=Admin"
¤ also tried
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist

Security
¤ Info=True;PWD=a bc;User ID=Admin"
¤ and
¤ @"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Persist

Security
¤ Info=True;Jet OLEDB:Database PWD=abc;UID=Adm in"
¤

Looks like the Jet OLEDB argument is incomplete (in two of your

examples) and the Password (not PWD)
parameter is incorrect:

@"Provider=Micr osoft.Jet.OLEDB .4.0;Data Source=C:\abc.m db;Jet
OLEDB:Engine Type=5;Persist Security
Info=True;User ID=Admin;Passwo rd=abc"

You may also need to include the path to the System.mdw file if you are

implementing user level
security.
Paul ~~~ pc******@amerit ech.net
Microsoft MVP (Visual Basic)


Nov 18 '05 #6

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

Similar topics

10
705
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 fine. I've looked at Q209805 but I don't think that helped. Oledb connection. Here is the one that works without a password. OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;" + @"Data Source=C:\db2.mdb");
1
578
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 aspx page on my web server. Where you see "MyComputerName" in the connection string I actually have the name of my computer. Dim objConn As New System.Data.OleDb.OleDbConnection("server=MyComputerName;Provider=Microsoft.Jet.OLEDB.4.0;Data...
1
4577
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 Library, DAO 3.6, OLE and VBA Extensibility 5. Do I need some other reference or ??
2
15111
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 connection string DOES NOT: .... "Extended Properties=Excel 8.0;HDR=YES;"; => Error: Could not find installable ISAM
6
6824
by: Robert Lawson | last post by:
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. ------------------------------------------------------------------------ --------
1
305
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=" & Server.MapPath("Database\Icsdata.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};Provider=Microsoft.Jet.OLEDB.4.0;" to point to my Access Database Any Suggestions why I am getting this error message Would appreciate any help because I am stuck Thanks -- J.P. Lacass
1
8920
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 and display in a datagrid. When the code executes I get: System.Data.OleDb.OleDbException: Could not find installable ISAM
2
5052
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 in to the server Widows 2003) Here is my Error - waht is wrong:
1
3585
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 ADODB.Connection Dim cn2 As New ADODB.Connection Dim rs As New ADODB.Recordset Dim intUserCount As Integer Dim strPassword As String
0
8399
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8827
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8606
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6169
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4159
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2732
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1622
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.