I have been searching for the whole day for the answer to this issue but I can't seem to figure it out 
Here is my code:
This database connects from Access 2002/2003 to an Oracle database. The address is saved in the System DSN. I have 'Set conn = Server.CreateObject("ADODB.Connection") commented out because that caused an issue "Object Expected." This is for a System DSN setup where I for some odd reason CANNOT save the password like how everyone can when they link their tables (and check the save password)
Everytime I change the connection string format, it gives me some odd error message. The current one right now is:
ORA-12560: TNS: protocol adapter error
Any gurus out there can offer some help? I would really appreciate it!
-Allen

Here is my code:
Code:
Sub autoUpdate()
'Connection Variables
'Dim strConn As String
Dim strConnection, conn
'Set conn = Server.CreateObject("ADODB.Connection")
Set conn = New ADODB.Connection
strConnection = "Driver={Microsoft ODBC for Oracle};DSN=InfoCtr;Uid=username;Pwd=password;"
conn.Open strConnection
DoCmd.RunMacro "Updatetest", 1
'Call Form_dashboardv2_0.transfer
conn.Close
Set conn = Nothing
End Sub
This database connects from Access 2002/2003 to an Oracle database. The address is saved in the System DSN. I have 'Set conn = Server.CreateObject("ADODB.Connection") commented out because that caused an issue "Object Expected." This is for a System DSN setup where I for some odd reason CANNOT save the password like how everyone can when they link their tables (and check the save password)

Everytime I change the connection string format, it gives me some odd error message. The current one right now is:
ORA-12560: TNS: protocol adapter error
Any gurus out there can offer some help? I would really appreciate it!
-Allen