selectBy
Last updated
Retrieves the specified field from a local table.
dataset
The name of the local table to select the records from.
String/Text
-
-
Yes
by
The name of the field to select the records from.
String/Text
-
-
Yes
operator
The operator to use to determine the records to select.
String/Text
=
=, >, <, >=, <=, !=, like, ilike
No
value
The records to be selected from the local table.
String/Text
-
-
Yes
first?
?
String/Text
-
-
No
extra
Extra parameters stored and passed to callback.
Any
-
-
No
Returns the list of records selected from the local table.
Array/List
The function to be executed if the specified records are selected successfully.
The function to be executed if the specified records are not selected successfully.
Coming Soon.
The user wants to display the data which id=1 in dataset "l_item".
Call the function "selectBy"

Specify the parameters:
dataset
l_item
by
id
value
1


Last updated