Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2010
    Location
    Palm Coast, FL
    Posts
    1

    Angry Microsoft Office Access Database Engine error '80004005'

    Microsoft Office Access Database Engineerror '80004005'

    'C:\Users\mkrout\Documents\Ideadudes_be.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

    /CustomerList.asp, line 13

    <html>
    <head>
    <title>ADO First Test</Title>
    <body>
    <b>Here is a listing of all records in the Customers Database of Ideadudes.mdb!</b>
    <hr>
    <%
    Dim strConnect
    strConnect = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & Server.MapPath("./ideadudes.mdb")
    Response.Write strConnect
    Set CustomersConn= Server.CreateObject("ADODB.Connection")
    CustomersConn.Open strConnect
    Set CustomersRS = CustomersConn.Execute("Select * From Customers")
    %>
    <p> Connecting to Access with OLe Connection</p>
    <table border="1">
    <%
    Do While Not CustomersRS.EOF
    %>
    <tr>
    <td><%=CustomersRS.Fields(1).Value %></td>
    <td><%=CustomersRS.Fields(2).Value %></td>
    </tr>
    <%
    CustomersRS.MoveNext
    Loop
    %>
    <%
    CustomerRS.Close
    Set CustomerRS = Nothing
    CustomersConn.Close
    Set CustomersConn = Nothing
    %>
    </body>
    </html>

    This is just sample that I am working on. This is frustrating. As you can see I am pulling th information from the server using Server.MapPath. But, this keeps coming up and I can not find where it is coming from. This is Classic ASP running on IIS 7 on Windows Server 2008 SP2. Now I know there are easier ways of doing this with .Net and I wish I could use it but the client I am working with does not want to make the jump at this point. So, I need to figure this out.

    Trying to get reaccumulated to ASP after spending time in ASP.Net.



    Can someone please help me?

    Thanks,

    Michael W Krout, MCSE, MCTS, MCITP, MCT
    michael@ideadudes.biz

  2. #2
    maximus's Avatar
    maximus is offline Expert
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Aug 2009
    Location
    India
    Posts
    931
    http://support.microsoft.com/kb/306269
    Follow this link I need not explain as I know you have experience in programming and you will understand.
    if this solves your problem mark this thread to be solved.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 9
    Last Post: 11-22-2011, 05:23 PM
  2. Corrupted Microsoft Access Database
    By segnosaur in forum Access
    Replies: 3
    Last Post: 10-06-2011, 12:22 AM
  3. Access 97 compatable with Office 2007??
    By mkattengell in forum Access
    Replies: 1
    Last Post: 09-08-2009, 04:24 AM
  4. Replies: 1
    Last Post: 07-21-2009, 03:01 PM
  5. Cannot load image in Microsoft Office Document Imaging
    By chrisjohns in forum Programming
    Replies: 1
    Last Post: 04-03-2009, 02:45 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums