>>--EXEC ADO---OPEN datarows_name-----END-EXEC----><
| datarows_name | The name of a DataRows cursor. | 
* 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.