So I have a JDBC call to insert data into a database.
I'd like to be able to view the statement as a whole (so, you know, "insert into some_table (colA, colB) values (1,2)").
But I would also like to see the statement as what it really is - that is,
insert into some_table (id, colA, colB) values (8,1,2)
where the id is the primary key (or any other auto_increment field) with what sql thingy would determine the auto-incremented the values to be!
Is this possible, or not?