I would like to use sqlite (using Java JDBC, not sure if that matters) to add or replace a new row to a database, and return the autogenerated ID of the row, and I'm not sure how to do this efficiently/cleanly.
table definition has >= 3 columns:
- autogenerated integer
ID - unique key string (let's call it
key) - other metadata
I can think of two general approaches:
SELECT ID FROM myTable WHERE key = ?- If there's no match, INSERT a new row, and repeat step #1 to get the autogenerated ID
or
INSERT OR REPLACE INTO myTable (key, metadata) VALUES (?, ?)SELECT ID FROM myTable WHERE key = ?
What should I do? Not sure if either approach is an atomic transaction. (well, the first isn't, not sure about the 2nd)
edit: I just tried the INSERT OR REPLACE approach, and it "works", except that it also replaces the ID with a new one, which is not what I want to have happen. I want to keep the existing ID.
using Java JDBC..replace a new row to a database, and return the autogenerated ID of the row. There are Java framework solutions for this. Where do you get the"not related to Java"bit from. It was readable as-is unless you cannot discern the gaps and the "or" in between – RichardTheKiwi Jan 23 '11 at 21:24