Multiline script command

Read(13) Label: multiline scriptcommand,

In “Edit command” zone, generally one command is executed at one time. In this case, the equal sing “=” preceding the command can be omitted. But a multi-line script to be executed should be start with two equal signs “==”. The user needs to create a table and insert two records to it, for instance, the script written in esProc cellset is as follows:

 

A

1

=create(ID,NAME,AGE)

2

>A1.insert(0,10,"Lucy",20)

3

>A1.insert(1,1,"Jim",19)

And in the edit command box, the above code should be written like this:

==create(ID,NAME,AGE)

>A1.insert(0,10,"Lucy",20)

>A1.insert(1,1,"Jim",19)

You can regard the command editing in this case as esProc cellset editing under column A only.