When adding rows manually to a table in Legacy SQL Developer, the output that pops up has the values that were used so we can copy and paste into our migration scripts for simplicity.
INSERT INTO DB.TABLE_NAME (FIELD1,FIELD2) VALUES ('VALUE 1' ,2);
In the new VS Code Extension, the same process yields a parameter insert statement instead of the one with values.
INSERT INTO DB.TABLE_NAME (FIELD1, FIELD2) VALUES (:1, :2);
Is there a setting that we can change or that can be added to mimic the behavior of the legacy tool?