VBScript & Access MDB - 800A0E7A - “Provider cannot be found. It may not be properly installed”

后端 未结 7 715
心在旅途
心在旅途 2020-11-28 14:29

I\'ve having a problem with a VBScript connecting to an access MDB Database. My platform is Vista64, but the majority of resources out there are for ASP/IIS7.

Quite

相关标签:
7条回答
  • 2020-11-28 14:49

    we had same issue where we were getting exception

    Provider cannot be found. It may not be properly installed

    with following machine configuration:-

    machine:- window 10
    oracle client installed:- oracle 12c
    provider:- MSDAORA.Oracle (instead of OraOledb)
    

    we have read number of blogs to resolve this where every post saying configuration issue between oracle client 12 to 11G version having 62 to 32bit inter dependency and lot more but it got resolved while changing the provider name from capital letter to small.

    earlier provider name was:- MSDAORA.Oracle (Here Oracle "O" is in capital letter ) now provider name is:- MSDAORA.oracle (Here oracle "O" is in small letter )

    please give a try, if that works for you :)

    0 讨论(0)
  • 2020-11-28 14:54

    Check this out

    EDIT: Warning, the link below goes straight to a download of 2007 Office System Driver: Data Connectivity Components.

    http://www.microsoft.com/download/en/confirmation.aspx?id=23734

    Installed it, read the instruction and everything worked as a charm.

    0 讨论(0)
  • 2020-11-28 14:56

    On Microsoft TechNet Configuring IIS to Run 32-bit Applications on 64-bit Windows (IIS 6.0):

    To enable IIS to run 32-bit applications on 64-bit Windows:

    1. Open a command prompt and navigate to the %systemdrive%\Inetpub\AdminScripts directory.
    2. Type the following command:

      cscript.exe adsutil.vbs set W3SVC/AppPools/Enable32BitAppOnWin64 "true"
      
    3. Press ENTER.

    Alternatively, via Internet Information Services (IIS) Manager:

    1. Access Application Pools
    2. Right click on "ASP.NET v4.0 Classic"
    3. Select "Set Application Pool Defaults ..."
    4. Under General change "Enable 32-Bit Applications" from "False" to "True"
    5. Click OK

    If you wish to run both 32-bit and 64-bit applications, there's various blogs to do it, such as Rakki Muthukumar's blog IIS7 - Running 32-bit and 64-bit ASP.NET versions at the same time on different worker processes.

    0 讨论(0)
  • 2020-11-28 14:57

    run script with SysWOW64 version
    C:\Windows\SysWOW64\wscript.exe or cscript
    instead of the default 64bit version from C:\Windows\System32

    0 讨论(0)
  • 2020-11-28 14:57

    Just use

    strConnect = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source= "

    if you 've all needed drivers

    0 讨论(0)
  • 2020-11-28 14:57

    I used this it worked for me without any error:

    sconnect = "Provider=MSDASQL.1;DSN=Excel Files;DBQ=" & myPath & ";HDR=Yes';"
    Set con = CreateObject("ADODB.Connection")
    Set rs = CreateObject("ADODB.Recordset")
    
    con.Open sconnect
    sSQLQry = "SELECT * FROM [" & tableName & "];"
    Set rs = con.Execute(sSQLQry)
    
    0 讨论(0)
提交回复
热议问题