Replacing ADO by LC LSX LotusScript

I am replacing ADO by LC LSX LotusScript. In ADO i use recordset to editing, inserting, querying, moving up and down within the recordset, etc.

What technique or documentation exists to do just that using LC LSX.

Subject: replacing ADO by LC LSX LotusScript.

I found these to be somewhat helpful:

http://www.redbooks.ibm.com/redpapers/pdfs/redp0115.pdf

Chapter 9 of:

http://www.redbooks.ibm.com/abstracts/sg246067.html

Subject: replacing ADO by LC LSX LotusScript.

Hi,

From LC LSX Guide:

Call Method for LCConnection - This method is used to call a stored procedure and potentially produce a result set.

Execute Method for LCConnection - This method executes a statement in connector-specific syntax, for example, an SQL statement for a relational database connector.

Fetch Method for LCConnection - This method obtains the next group of records from a result set. This method requires an active result set in the connection.

Check this out for details:

http://www-12.lotus.com/ldd/doc/lei/70/lsxlc.nsf

Konrad