lookingforhelp
New member
- Local time
- Today, 10:30
- Joined
- Feb 19, 2008
- Messages
- 3
Hi,
sorry for misspelling access
What i want to do is connect to an oracle database(on a server) via my MS access database and i want to be able to update an oracle table by using a script that takes information from my ms access table.
I will greatly appreciate any help on this, Thanks in advanced.
I found the following code to connect to the database but now i want to test it.
Public Sub OuvrirConnexion()
Dim Conn
Set Conn = New ADODB.Connection
Dim strConn As String
strConn = "Server=myserver; DSN=myDSN; UID=myusername; PWD=mypassword"
Conn.Open strConn
Conn.Close
End Sub
sorry for misspelling access
What i want to do is connect to an oracle database(on a server) via my MS access database and i want to be able to update an oracle table by using a script that takes information from my ms access table.
I will greatly appreciate any help on this, Thanks in advanced.
I found the following code to connect to the database but now i want to test it.
Public Sub OuvrirConnexion()
Dim Conn
Set Conn = New ADODB.Connection
Dim strConn As String
strConn = "Server=myserver; DSN=myDSN; UID=myusername; PWD=mypassword"
Conn.Open strConn
Conn.Close
End Sub