I can't for the life of me find out to get the behavior I want:
old:insert into build_pc values (&&buildA, 35,40,32,29,26,22,22,null,13,11,7,1,999) new:insert into build_pc values (build_id_seq.nextval, 35,40,32,29,26,22,22,null,13,11,7,1,999) 1 rows inserted.
As part of an SQL transaction I'm trying to save a variable, moreover an integer ID number, so that it can be entered in a few places across the transaction. The problem is SQLDev is being too clever and converting back to he nextval function each time instead of just storing an int.
Google says use set, but that throws this:
SQLPLUS Command Skipped: set buildA = build_id_seq.nextval