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

  1. #1

    Default System error 5

    Hi

    To day I suddenly got the same error message when I
    connected to all my databases using
    ADODB.conection. "Application popup: ASP Script Error :
    Specified driver could not be loaded due to system error
    5 (Microsoft Access Driver (*.mdb))." All the codes works
    fine on my mirror computer. Do any one have a solution on
    this problem. The OS is Win2000 with IIS 5.0.

    N.E. Dall


    NeDall Guest

  2. Similar Questions and Discussions

    1. Hello Error with Web Services. No se puede serializar el miembro System.ComponentModel.MarshalByValueComponent.Site de tipo System.ComponentModel.ISite porque es una interfaz.
      Hello I have a solution iwth a web project and web service project I made a project and I compiled it and it has no errors. But when I try to add...
    2. The type System.Web.UI.WebControls.TextBox in Assembly System.Web...error
      I've been getting this error every since I installed InstallSqlState to handle my viewState Sessions. it only happens on 1 section of my asp.net...
    3. Lsass.exe System error "object name not found". System keeps rebooting
      When trying to install the drivers for the PCI modem in my laptop, prompted for the driver CD. Installed the driver without any errors but asked...
    4. system error
      when i turn my cmoputer on it goes to this black screen and displays this message "Windows could not start beacaue the following file is missing or...
    5. System 32 Error
      Hi I have XP and I get the following error some time : System32 System Error "-2147467259(80004005)" Automation error Unspecified error ...
  3. #2

    Default Re: System error 5

    NeDall wrote:
    > Hi
    >
    > To day I suddenly got the same error message when I
    > connected to all my databases using
    > ADODB.conection. "Application popup: ASP Script Error :
    > Specified driver could not be loaded due to system error
    > 5 (Microsoft Access Driver (*.mdb))." All the codes works
    > fine on my mirror computer. Do any one have a solution on
    > this problem. The OS is Win2000 with IIS 5.0.
    >
    > N.E. Dall
    Stop using ODBC. Switch to using the native Jet OLEDB Provider for your
    connection strings, which can be as simple as:
    connection.open "provider=microsoft.jet.oledb.4.0;" & _
    "data source=p:\ath\to\your\database.mdb"

    See here:
    [url]http://msdn.microsoft.com/library/en-us/ado270/htm/ado_deprecated_components.asp[/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 Guest

  4. #3

    Default Re: System error 5

    >-----Original Message-----
    >NeDall wrote:
    >> Hi
    >>
    >> To day I suddenly got the same error message when I
    >> connected to all my databases using
    >> ADODB.conection. "Application popup: ASP Script Error :
    >> Specified driver could not be loaded due to system error
    >> 5 (Microsoft Access Driver (*.mdb))." All the codes
    works
    >> fine on my mirror computer. Do any one have a solution
    on
    >> this problem. The OS is Win2000 with IIS 5.0.
    >>
    >> N.E. Dall
    >
    >Stop using ODBC. Switch to using the native Jet OLEDB
    Provider for your
    >connection strings, which can be as simple as:
    >connection.open "provider=microsoft.jet.oledb.4.0;" & _
    >"data source=p:\ath\to\your\database.mdb"
    >
    >See here:
    >[url]http://msdn.microsoft.com/library/en-[/url]
    us/ado270/htm/ado_deprecated_components.asp
    >
    >
    >
    >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"
    >
    >
    >.
    >
    Thanks for the answer.

    I have changed some of the call to microsoft.jet.oledb.4.0
    and it work fine on the mirror server, but not at the
    other server, whit the problem. I get the error
    message "Application popup: ASP Script Error : Provider
    cannot be found. It may not be properly installed. ". It
    look like my IIS 5.0 have lost all it connection to it's
    DB's. I have reinstalled the IIS 5.0 with no result. Have
    anyone else experimented this problem? Is there a
    solution?

    N E Dall

    N E Dall Guest

  5. #4

    Default Re: System error 5

    > Thanks for the answer.
    >
    > I have changed some of the call to microsoft.jet.oledb.4.0
    > and it work fine on the mirror server, but not at the
    > other server, whit the problem. I get the error
    > message "Application popup: ASP Script Error : Provider
    > cannot be found. It may not be properly installed. ". It
    > look like my IIS 5.0 have lost all it connection to it's
    > DB's. I have reinstalled the IIS 5.0 with no result. Have
    > anyone else experimented this problem? Is there a
    > solution?
    >
    > N E Dall
    Install the latest version of MDAC
    ([url]http://msdn.microsoft.com/data/Default.aspx[/url]) on the server
    Bob Barrows
    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.


    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