Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'd like to know if it if possible to make a query to a DB and assign a value return from the query to a variable while a script is being executed?
Use PEEK() function. See help for example.
Use PEEK() function. See help for example.
Thanks. I used it like this:
Temp:
load FIELD;
;
sql select FIELD from TABLENAME
;
LET variable = PEEK('FIELD');