Ask a Question related to ASP Database, Design and Development.
-
MS Newsgroups #1
Microsoft JET Database Engine error '80040e69'
Yesterday I wrote about an error I am getting on a ASP page using DSN people
responded with some suggestions which I have tried and now I get the
following error message : (
Microsoft JET Database Engine error '80040e69'
Could not start session.
/argusnet04/contractlist.asp, line 53
I altered my connection string to the following I did substitute user name
with a good name and have also tried it without those callings to no avail'
Please Help Thanks
------------------------------------------------------
cst = "Provider=Microsoft.Jet.OLEDB.4.0; " & _
"Jet OLEDB:System Database=Y:\security\system.mdw;" & _
"Data Source=Y:\datafiles\contracts.mdb;"
Set Conn = Server.CreateObject("ADODB.Connection")
conn.open cst, "UserName", "Password"
select case SearchType
case "AR"
SearchType = "AR #"
SearchValue = Request("searchValue")
DocHeader = "Contract"
Set RS = Conn.Execute("{Call ContractList_AR('" & SearchValue & "')}")
case "Customer Name"
SearchValue = Request("name")
DocHeader = "Contract"
Set RS = Conn.Execute("{Call ContractList_Name('" & SearchValue & "')}")
end select
If RS.eof then ' There are no contracts
RS.Close
Set RS = nothing %>
MS Newsgroups Guest
-
The Microsoft Jet database engine
"Connection verification failed for data source: Testing java.sql.SQLException: The Microsoft Jet database engine cannot open the file... -
Unspecified error in Microsoft JET Database Enginecode=0 Type=1
Got the following message from coldfusion when trying to create a connection with a access unicode driver Unspecified error in Microsoft JET... -
Microsoft JET Database Engine error '80004005'
Hi, I have windows 2000 server with IIS and I program ASP. I use the string: "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=basedatos.mdb;" to... -
JET Database Engine error '80040e14'
I've got a query command that is checking a field name against it's value. The query is pulling from an Access 2000 DB. Here's the script: ... -
Error: Microsoft JET Database Engine (0x80040E07)
I don't understand when I do (2), it will throw the error when I run the ASP. (1) is working fine. Should I use a single quote between the string in... -
Bob Barrows [MVP] #2
Re: Microsoft JET Database Engine error '80040e69'
MS Newsgroups wrote:
Do not use mapped drives in your connection strings. it is unlikely that the> ------------------------------------------------------
>
> cst = "Provider=Microsoft.Jet.OLEDB.4.0; " & _
> "Jet OLEDB:System Database=Y:\security\system.mdw;" & _
> "Data Source=Y:\datafiles\contracts.mdb;"
> Set Conn = Server.CreateObject("ADODB.Connection")
> conn.open cst, "UserName", "Password"
>
IUSR_machinename account has access to those mapped drive letters.
Is Y: a local or remote drive? If it's on another machine, see this:
[url]http://www.aspfaq.com/show.asp?id=2168[/url]
Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Bob Barrows [MVP] Guest



Reply With Quote

