• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Connect Orcle8i using VB6 ADO

larva

Member
Hi folks,

How to connect Orcle8i using VB6 ADO ? What should be the connection string ? Do I need to set it at Control Panel/Administrative Tools/Data Source(ODBC) there ? How to set it ? Any website contain these information ?

Public conn As ADODB.Connection
Public rs As ADODB.Recordset
 
Why don't you just link the tables? Then you can refer to them as if they are local and only use "CurrentProject.Connection" instead of having to explicitly open the data source each time?

Thomas
 
Do a google search on "Data Source" or "Connection String". You'll see a site with virtually all DSN connection strings you'll ever need.
 
Back
Top