I'm developing a procedure to populate a global table using the 'INSERT INTO' statement. For testing I have a simple global table with all data assigned as numbers...
When I run the following statement in the script console..
Table.query("INSERT INTO RackVolumeTable2 (Rack, Bay, Level, Slot, Volume) VALUES ($1, $2, $3, $4, $5)", 1, 2, 3, 4, 5.11);
I get the following error..
When I run the statement in debug mode, I get this error..
I've tried just inserting a single value but get same errors. I believe the statement is constructed correctly as any variation will result in parsing errors.
Per documentation, the "INSERT INTO" is supported. What is the issue?? Thanks - Stan