>>--EXEC ADO---OPEN datarows_name-----END-EXEC----><
OPEN is similar to the standard EXEC SQL OPEN statement.
* Declare the cursor... EXEC ADO DECLARE drCust DATAROWS FROM Customers END-EXEC * Open the cursor... EXEC ADO OPEN drCust END-EXEC
Comment:
OPEN is similar to the standard EXEC SQL OPEN statement.