
VB5 / Oracle 803, Microsoft driver for Oracle 2.73
I am using RDO to access data in the Oracle server.
I have this error message "MSrdo resultset Error xxxxx, bookmark", l
when I click on the command buttion to add a new record. Can some one
please point out my errors... Thank you.
My code are as follows;
____________________
Private Sub cmdAddNew_Click()
Dim iResponse As Integer
If mDirty Then
iResponse = MsgBox("Dirty data. " _
& "Save before adding a new record?", _
vbYesNo + vbExclamation, "Dirty Data")
If iResponse = vbYes Then
DataSave
End If
End If
' On Error GoTo AddNewError
mrdoRS.AddNew
mrdoRS.Update
mrdoRS.Move 0, mrdoRS.LastModified <- Error
DataLoad
Exit Sub
AddNewError:
frmRDOErrors.ErrorColl = rdoErrors
End Sub