Microsoft JET Database Engine error '80040e69'

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. The Microsoft Jet database engine
      "Connection verification failed for data source: Testing java.sql.SQLException: The Microsoft Jet database engine cannot open the file...
    2. 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...
    3. 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...
    4. 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: ...
    5. 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...
  3. #2

    Default Re: Microsoft JET Database Engine error '80040e69'

    MS Newsgroups wrote:
    > ------------------------------------------------------
    >
    > 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"
    >
    Do not use mapped drives in your connection strings. it is unlikely that the
    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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139