Retrieves the current row data from the active recordset
Usage:
dbRsRowData (object me)
Parameter:
None
Returns:
(list) - a one dimension list containing the data for the row
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( )
listRowData = xtRose.dbRsRowData( )
Notes:
After opening a recordset, you should always try to move to a record before trying to obtain row data with dbRsRowData( ).