Hello,
is it possible in Ignition to execute a query from a script (in my case an insert) an get the new created row´s ID (Autoincrement) as return value from the query to work with it in the script without executing a select query later on? Like:
Insert into control
(Name)
OUTPUT INSERTED.controlID
VALUES
("'":ControlName"'")