I have a table og_table
in the anylogic database that I load data into. From that table, I programmatically iterate on it through selectResultSet
, and now I want to re-write those rows with some transformation into new_table
. My plan then was just to run some INSERT table ... values()
query into new_table
that would write line by line.
However, I'm getting a little confused with documentation on which method to use. I see modify(), InsertQuery(), Insert(), etc. What's the difference between these methods?