I'm using com.mysql.jdbc.Driver (If it means anything). I want to be able to catch and properly process the exceptions I receive from MySQL. I want to know if the transaction failed, if there's already a primary key with the value I'm trying to insert, and all the other errors.
I want to do something like
try
{
... // Code
}
catch(SQLException e)
{
switch(e.getErrorCode())
{
case...
case...
default...
}
}
I've tried looking, but haven't found any, only some entries which talk about C# / .net
The main reason I want this is to see if one of my transactions rolled back because of the Isolation level I put, in that case, I'll have to retry it. And of course, some other issues.
Your help is much appreciated!
