CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: ODBC for Oracle

  1. #1
    Join Date
    Jan 2001
    Posts
    12

    ODBC for Oracle

    Hello there,

    I have to make a connection to an Oracle database to retrieve some information for my database in Access. But it doesn't work. Can someone help me with some example code ? I tried to establish the connection with 'Microsoft ODBC for Oracle', but that doesn't work.

    thank you in advance,
    dartoisky


  2. #2
    Join Date
    May 2000
    Location
    Belgium, Bruges
    Posts
    146

    Re: ODBC for Oracle

    amai wi, oj da nog nie wit!!!


  3. #3
    Join Date
    Jul 2001
    Location
    maharashtra,india
    Posts
    181

    Re: ODBC for Oracle

    add adodc on ur form
    right click ,properties
    and then select "Microsoft ODBC for Oracle"
    provide user name and password


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

    Re: ODBC for Oracle

    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
    iouri@hotsheet.com
    Iouri Boutchkine
    iouri@hotsheet.NOSPAM.com

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