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.
Overview
var SQL = {
FOUND : false,
NOTFOUND : false,
ROWCOUNT : 0,
ISOPEN : false
};Usage Samples
Input
Output
EWIs Related
Last updated