Can't find ISAM driver
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > IIS server support > IIS Server > Can't find ISAM driver




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Can't find ISAM driver  
Guy Verville


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 01:47 AM

Hello,

I'm trying to install locally a webpage.  On one XP professional computer,
everything is fine. In another one, same configuration, except that it's an
Office 2002 installation (mine is 2003).

When I type the localhost address (http://localhost), I get an error stating
that the ISAM driver cannot be found. I've checked the ODBC table and the Ms
Access Database driver is installed.

What should I check?

Thanks in advance.

Guy







[ Post a follow-up to this message ]



    Re: Can't find ISAM driver  
Ken Schaefer


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 01:47 AM

Hi,

Please post the exact error message you are seeing. Thankyou.

Generally, if you get a:

Microsoft JET Database Engine (0x80004005)
Could not find installable ISAM

error, it's because your connection string has a mistake in it.

Cheers
Ken

"Guy Verville" <taddeus@spamcop.net> wrote in message
news:uDaDrGPpEHA.3988@tk2msftngp13.phx.gbl...
> Hello,
>
> I'm trying to install locally a webpage.  On one XP professional computer,
> everything is fine. In another one, same configuration, except that it's
> an Office 2002 installation (mine is 2003).
>
> When I type the localhost address (http://localhost), I get an error
> stating that the ISAM driver cannot be found. I've checked the ODBC table
> and the Ms Access Database driver is installed.
>
> What should I check?
>
> Thanks in advance.
>
> Guy
>







[ Post a follow-up to this message ]



    Re: Can't find ISAM driver  
Guy Verville


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 01:47 AM

Thanks for answering. This is the exact error. What I don't understand, is
that the same string is no problem with my computer and on
http://www.chorale.qc.ca...

Microsoft JET Database Engine error '80004005'
Pilote ISAM introuvable.
/acqellivrev.inc, line 10

Here is my connection code:
<%
Dim dcnDB
dim strDatabaseLocation
Dim rsProd
dim rsCat
Dim strSQL
strDatabaseLocation=Server.MapPath("dbchorale/ellivrevacq.mdb")
set dcnDB=Server.CreateObject("ADODB.Connection")
dcnDB.ConnectionString= "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security
Info=False;Data Source=" & strDatabaseLocation
dcnDB.Open
%>

Guy

"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> a écrit dans le message de
news: uRen6KPpEHA.3464@tk2msftngp13.phx.gbl...
> Hi,
>
> Please post the exact error message you are seeing. Thankyou.
>
> Generally, if you get a:
>
> Microsoft JET Database Engine (0x80004005)
> Could not find installable ISAM
>
> error, it's because your connection string has a mistake in it.
>
> Cheers
> Ken
>
> "Guy Verville" <taddeus@spamcop.net> wrote in message
> news:uDaDrGPpEHA.3988@tk2msftngp13.phx.gbl... 
>
>







[ Post a follow-up to this message ]



    Re: Can't find ISAM driver  
Guy Verville


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 01:47 AM

Well, I removed the "Persist Security Info=False",

and it worked....
Is it important?

Guy

"Guy Verville" <taddeus@spamcop.net> a écrit dans le message de news:
uv9kZuPpEHA.3392@TK2MSFTNGP15.phx.gbl...
> Thanks for answering. This is the exact error. What I don't understand, is
> that the same string is no problem with my computer and on
> http://www.chorale.qc.ca...
>
> Microsoft JET Database Engine error '80004005'
> Pilote ISAM introuvable.
> /acqellivrev.inc, line 10
>
> Here is my connection code:
> <%
> Dim dcnDB
> dim strDatabaseLocation
> Dim rsProd
> dim rsCat
> Dim strSQL
> strDatabaseLocation=Server.MapPath("dbchorale/ellivrevacq.mdb")
> set dcnDB=Server.CreateObject("ADODB.Connection")
> dcnDB.ConnectionString= "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security
> Info=False;Data Source=" & strDatabaseLocation
> dcnDB.Open
> %>
>
> Guy
>
> "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> a écrit dans le message de
> news: uRen6KPpEHA.3464@tk2msftngp13.phx.gbl... 
>
>







[ Post a follow-up to this message ]



    Re: Can't find ISAM driver  
Ken Schaefer


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 08:29 AM

I don't think Persist Security Info is a valid property for the Jet OLEDB
Provider.

The only properties supported by all OLEDB Providers is here:
http://msdn.microsoft.com/library/d...ctionstring.asp
anything else is Provider specific, and you'd need to check the supported
properties for the provider in question.

Cheers
Ken

"Guy Verville" <taddeus@spamcop.net> wrote in message
news:etLA0yPpEHA.1960@TK2MSFTNGP10.phx.gbl...
> Well, I removed the "Persist Security Info=False",
>
> and it worked....
> Is it important?
>
> Guy
>
> "Guy Verville" <taddeus@spamcop.net> a écrit dans le message de news:
> uv9kZuPpEHA.3392@TK2MSFTNGP15.phx.gbl... 
>
>







[ Post a follow-up to this message ]



    Re: Can't find ISAM driver  
Guy Verville


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-28-04 01:27 PM

Thanks for your help.

Guy

"Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> a écrit dans le message de
news: uT$kKOSpEHA.3196@tk2msftngp13.phx.gbl...
>I don't think Persist Security Info is a valid property for the Jet OLEDB
>Provider.
>
> The only properties supported by all OLEDB Providers is here:
> http://msdn.microsoft.com/library/d...ctionstring.asp
> anything else is Provider specific, and you'd need to check the supported
> properties for the provider in question.
>
> Cheers
> Ken
>
> "Guy Verville" <taddeus@spamcop.net> wrote in message
> news:etLA0yPpEHA.1960@TK2MSFTNGP10.phx.gbl... 
>
>







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 12:08 PM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register