Kinger43
racecar driver
- Local time
- Today, 04:37
- Joined
- Aug 17, 2007
- Messages
- 226
Here's the code:
After this it just goes into calling a bunch of queries from the Oracle database to do a bunch of updates on linked tables.
The problem that I am having is in this line, "srcDB.Open "database", "username", "password"." This opens a dialog box with the database and username fields filled in but leaves out the password for whatever reason. Any insight as to why?
Code:
Dim srcDB As ADODB.Connection
Dim srcRS As ADODB.Recordset
Dim txtStatus As String
Public Sub OMS_Update()
Set srcDB = New ADODB.Connection
srcDB.Open "database", "username", "password"
srcDB.CursorLocation = adUseServer
After this it just goes into calling a bunch of queries from the Oracle database to do a bunch of updates on linked tables.
The problem that I am having is in this line, "srcDB.Open "database", "username", "password"." This opens a dialog box with the database and username fields filled in but leaves out the password for whatever reason. Any insight as to why?