TudorSmith
Programmer
Yikes!
In my AccessDB, I am interrogating an Oracle Database to retrieve data into a dump table.
I've removed the actual specifcs to protect the innocent :
Now, when I quite the DB, I am setting the dbFC variable to Nothing
The application closes but MSAccess stays open.
I tried opening the app and not running the import process. The app closes fine, so I figure somewhere in the process, I am initiating OLE to connect to the Oracle DB, and it is not releasing it!
Can anyone suggest how to release the OLE object so that MSAccess can close fully?
Thanks
Tudor
birklea ~©¿©~ <><
Dim objJedi as Jedi.Knight
Set objJedi[skyWalker].Aniken = FatherOf(useThe.Force(objJedi[skyWalker].luke))
In my AccessDB, I am interrogating an Oracle Database to retrieve data into a dump table.
Code:
Set dbFC = New ADODB.Connection
dbFC.Provider = "MSDAORA"
dbFC.Open "MyServer", "MyUser", "MyPassword"
I've removed the actual specifcs to protect the innocent :
Now, when I quite the DB, I am setting the dbFC variable to Nothing
Code:
Set dbFC = Nothing
The application closes but MSAccess stays open.
I tried opening the app and not running the import process. The app closes fine, so I figure somewhere in the process, I am initiating OLE to connect to the Oracle DB, and it is not releasing it!
Can anyone suggest how to release the OLE object so that MSAccess can close fully?
Thanks
Tudor
birklea ~©¿©~ <><
Dim objJedi as Jedi.Knight
Set objJedi[skyWalker].Aniken = FatherOf(useThe.Force(objJedi[skyWalker].luke))