Implicit Cursor attribute helper
An implicit cursor has attributes that return information about the most recently run SELECT or DML statement. This section explains how this is being emulated using JavaScript.
Last updated
An implicit cursor has attributes that return information about the most recently run SELECT or DML statement. This section explains how this is being emulated using JavaScript.
Last updated
These are the attributes that you can use inside Snowflake stored procedures using this helper:
FOUND
NOTFOUND
ROWCOUNT
ISOPEN
In Snowflake code, inside the procedures, you will find the initialization of these attributes:
The values of the attributes: FOUND, NOTFOUND, ROWCOUNT are updated inside the
The attribute ISOPEN is always false, just like in Oracle.
No issues were found.
No related EWIs.