
Oracle Driver Not Capable Error on Update??
I am using VB5 accessing an Oracle database using RDO. I am creating an
updatable resultset and adding a record. The following code works in SQL
Server:
Set phInboundRS = rdoConn.OpenResultset(rdoSQL, rdOpenDynamic,
rdConcurRowVer)
phInboundRS.AddNew
[code that adds field data]
phInboundRS.Update
On the Update, I am now receiving S1C00 [Microsoft ODBC Driver for Oracle]
Driver Not Capable. Does anyone know the correct paramters when opening
the resultset?
TIA for any assistance.