Previous - dbRsMoveNext Section Home - Database Next - dbRsMoveLast


dbRsMovePrevious ( )

Moves to the previous record in the active recordset

Usage:

dbRsMovePrevious (object me)

Parameter:

None

Returns:

(integer) - The success code

Example:

xtRose = xtra("Rosetta").new( )
xtRose.dbOpen( "Provider=MSDASQL;ExtendedAnsiSQL=2;DRIVER={Microsoft Access Driver (*.mdb)};Dbq="&the moviepath&"main" )
xtRose.dbRsOpen( 2, "Select * from Test" )
xtRose.dbRsMoveLast( )
xtRose.dbRsMovePrevious( )

Notes:

dbRsMovePrevious( ) will never try to move before the first recordset


Previous - dbRsMoveNext Section Home - Database Next - dbRsMoveLast