|
-
Hi,
I am using Oracle as my database and
Vb and C++ as front end. The only problem is
How do I go about in connecting the Oracle
database with VB using the ADODB.Connection object, using OLEDB. Is there any sites where i can find sample code for this? API? Links? Sample tutorials? ETc? Any help is greatly appreciated. thx
Tim
-
Dim strConnectString as String
Dim objConn as ADODB.connection
set objConn = new ADODB.connection
strConnectString = "Provider=MSDAORA;Data Source=serverName;User ID=userName; Password=userPassword;"
objConn.connectstring = strConnectString
objConn.open
-
You can check out oracle documentation for using Oracle OLE objects with VB/VC++
Bala
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|