Background
I am using and closing a lot of Prepared/Callable Statements and ResultSet, so I made a global static method to clean up in the finally section.
It is obvious those can't be null most of time, I just want to make sure adding for null check instead of closing right away.
So far there was no problem at all using this methods, but is this thread safe? If not, do I need to use synchronized method instead of plain static method?
Usage Other Threaded Class
private PreparedStatement psUpdate = null;
try {....}
catch(Exception e) {...}
finally
{
Utils.NullCheckClose(this.psUpdate, this.getProcName());
}
Declaration Utils Class
public static void NullCheckClose(PreparedStatement temp, String threadname)
{
try
{
if(temp != null)
temp.close();
}
catch(Exception msg)
{
Logger.erLog(msg, threadname);
}
finally
{
temp = null;
}
}
public static void NullCheckClose(CallableStatement temp, String threadname)
{
try
{
if(temp != null)
temp.close();
}
catch(Exception msg)
{
Logger.erLog(msg, threadname);
}
finally
{
temp = null;
}
}
public static void NullCheckClose(ResultSet temp, String threadname)
{
try
{
if(temp != null)
temp.close();
}
catch(Exception msg)
{
Logger.erLog(msg, threadname);
}
finally
{
temp = null;
}
}
