close an existing recordset
Usage:
dbClose (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.dbRClose( )
xtRose.dbClose( )
Notes:
Close the recordset when it is no longer needed. This frees up the memory used for storing recordset information.