vote up 2 vote down star

Hi All, I want to know whether is it a good idea to catch exception based on unique index of sql in java.

i want to catch an exception like 'duplicate entry for 1-0' if so then handle exception otherwise insert properly in database table?

flag

63% accept rate
So you are trying to issue an insert on a unique column without checking if the value already exists, and when you get an exception you will know that there is a duplicate. Is this right ? – Babar Jun 22 at 7:19
yes. I want to check than only – MySQL DBA Jun 22 at 8:06

3 Answers

vote up 2 vote down check

I say you don't do that, for two reasons:

  • the error messages are a bit unclear: ERROR 1062 (23000): Duplicate entry 'xxx' for key 1. Are you always 100% sure which key is 1?
  • it locks in you to a specific database vendor

I find it simpler to transactionally:

  • check for row's existence;
  • throw an exception if the row already exists;
  • insert the new row.


Performance issues:

I say measure twice, cut once. Profile the usage for your specific use case. Top of my head I would say that the performance will not be an issue except for the heavy db usage scenarios.

The reason is that once you perform a SELECT over that specific row, its data will be placed in the database caches and immediately used for insertion check done on the index for the INSERT statement. Also keeping in mind that this access is backed by an index leads to the conclusion that performance will not be an issue.

But, as always, do measure.

link|flag
I agree with you Robert. well but will it not affect the performance as everytime though the record does not exists it has to check and then insert. Also on the other side as skaffman said it will be easy to catch the exception as i dont know java can anyone explain to me that will that be easy way of catching exception, as may be the more indexing will reduce the performace. – MySQL DBA Jun 22 at 8:13
Please see my update. – Robert Munteanu Jun 22 at 8:22
Thanks for your input. – MySQL DBA Jun 22 at 8:27
vote up 1 vote down

You could use the REPLACE command. It inserts/updates based on the existence of the record. And its atomic too whereas query then insert/update is not. It depends on what do you want to do if you detect the key violation?

link|flag
vote up 1 vote down

I don't see why not. It's probably more efficient than running a query before the insert. It's probably better to catch the exception's error code rather than recognising the error message, though.

link|flag
Also, if you happen to be using Spring, then the JDBC xception Translator will translate the SQLException into a DataIntegrityViolationException. It might be nicer to catch that instead of the raw exception. – skaffman Jun 22 at 7:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.