CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2001
    Location
    Germany
    Posts
    16

    Access via ADO to an Orale-database

    Hi,

    I want to write a visual basic programm, with which I can access via ADO to an oracle-database. But I have the problem, that I don't know exactly, which dll-File I have to include.

    Please help me.

    Thanks
    Sascha


  2. #2
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: Access via ADO to an Orale-database

    You must include msdaora.dll, wich contains the oracle drivers for ado

    Tom Cannaerts
    [email protected]

    The best way to escape a problem, is to solve it.
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

  3. #3
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: Access via ADO to an Orale-database

    For the current Oracle ODBC Driver from Microsoft:

    oConn.Open "Driver={Microsoft ODBC for Oracle};" & _
    "Server=OracleServer.world;" & _
    "Uid=demo;" & _
    "Pwd=demo;"

    For the older Oracle ODBC Driver from Microsoft:

    oConn.Open "Driver={Microsoft ODBC Driver for Oracle};" & _
    "ConnectString=OracleServer.world;" & _
    "Uid=demo;" & _
    "Pwd=demo;"



    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured