
Dynamic cursor and Oracle
Tom,
You will not be able to get a dynamic cursor type for an Oracle database.
Oracle does not allow uncommitted reads (aka dirty reads) and Oracle
implements the "Read Consistency" feature. The contents of a rowset are
established upon execution of the DML statement, and are guaranteed to be
consistent for the life of the opened cursor (or until the "Snapshot too
Old" error condition)
If you need this behavior, you will have to implement it in your
application. First, get all other apps to commit often (you will never see
uncommited changes from other sessions/transactions). Second, create a
timer that will periodically cause your recordset to be closed and then
re-opened.
regards
roy fine
Quote:
> Does anybody know is it possible to use ADO recordset
> with dynamic cursor on Oracle database. If it is possible, I would lke to
> know whic driver (ODBC) or
> provider (Ole Db) to use.
> Thanks