I am not sure how you are trying to retrieve the data. Normally I would use this sort of connection set up:
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim sSQL As String
Set cn = New ADODB.Connection
With cn
.CursorLocation = adUseClient
End With
cn.Open "Provider=msdaora;Data Source=Database.Domain;User ID=UserID;Password=Password;"
sSQL = "SELECT * FROM database.tablename"
Set rs = New ADODB.Recordset
rs.Open sSQL, cn, adOpenDynamic, adLockOptimistic
This will open an editable recordset.
Have you gotten this far?
mmcdonal
Look it up at:
http://wrox.books24x7.com