|
Example Scroll: Do you know how many ways to retrieve a particular record from a server at the fastest speed? We can't use sequential method to get the record, and it is very often too slow! We need to use interfaces IRowsetFind, IRowsetLocate, IRowsetScroll, and IRowsetIndex to pinpoint a record. OleDBPro wraps all the functions of these interfaces. Additionally, you can use CRBase::MoveNext(LONG nSkipped=0) to jump from one record to another by setting the parameter nSkipped.
For how to use interfaces IRowsetFind and IRowsetIndex, see examples FilterSort and Indexes. You are also encouraged to experiment the following examples about Oracle stored procedures at MS Support site. |