where to handle Checked exception ? and where-not ?
Java's checked exceptions have become highly controversial and it seems to be accepted in the Java community that checked exceptions should only be used when the exceptions can be handled in the application.
Exceptions that cannot be handled in any meaningful way by application code should be allowed to go on unchecked. for ex : SQLException is a checked exception, application code must handle it, either catching it and doing something with it or explicitly throwing it to calling code.
Tuesday, April 11, 2006
Checked Exception ?
Posted by Vetriselvan at 4/11/2006 07:48:00 PM 0 comments
Thursday, April 06, 2006
Tuesday, April 04, 2006
Work around
select TO_NUMBER ('13,000.09', '99G999D99','nls_numeric_characters = ''.,''') from dual
select TO_NUMBER ('13.000,09', '99G999D99','nls_numeric_characters = '',.''') from dual
Posted by Vetriselvan at 4/04/2006 08:42:00 PM 0 comments
Subscribe to:
Posts (Atom)