Sep 7, 2001 #1 FengShui1998 MIS Joined Apr 27, 1999 Messages 705 Location US Hello, I'm trying to connect to an Oracle database. Does any body have a connection string I could use with server uid password dbq Or is it more involved than using an SQL connection string? Thanks, fengshui1998
Hello, I'm trying to connect to an Oracle database. Does any body have a connection string I could use with server uid password dbq Or is it more involved than using an SQL connection string? Thanks, fengshui1998
Sep 7, 2001 #2 wushutwist Programmer Joined Aug 3, 2000 Messages 984 Location US Why not create a DSN and just connect to it that way? Wushutwist Upvote 0 Downvote
Sep 9, 2001 1 #3 WenStin IS-IT--Management Joined Sep 7, 2001 Messages 1 Location US Here's an example. I use this DSN-less string to connect to an Oracle 8i database: set dbconn = server.CreateObject("ADODB.Connection" dbconn.Open "Provider=MSDAORA.1;Data Source=sun1.xxxxxxx.com;User Id=xxxxxt;PASSWORD=xxxxxxx;" Hope this helps. Upvote 0 Downvote
Here's an example. I use this DSN-less string to connect to an Oracle 8i database: set dbconn = server.CreateObject("ADODB.Connection" dbconn.Open "Provider=MSDAORA.1;Data Source=sun1.xxxxxxx.com;User Id=xxxxxt;PASSWORD=xxxxxxx;" Hope this helps.
Sep 9, 2001 Thread starter #4 FengShui1998 MIS Joined Apr 27, 1999 Messages 705 Location US wenstin, Just what I was looking for. Thanks!!! fengshui1998 Upvote 0 Downvote