2
votes
Find if an SQLException was thrown because of a duplicate
With basic JDBC, there really isn't a way to do what you are saying in a cross-database manner. As you mentioned getErrorCode could be used, but required vendor-specific error codes.
…
7
votes
Selecting all rows untill first occurence of given value
SELECT * FROM mytable where date > (
SELECT max(date) FROM mytable where check = 0
)
…
