Code I inherited has many transaction code methods of this form:
public void addCourseToCourses(String values)
{
try
{
conn.setAutoCommit(false);
}
catch (SQLException e)
{
Logger.getLogger(connDb.class.getName()).log(Level.SEVERE, null, e);
return;
}
try
{
stmt.executeUpdate("insert into courses values " + values);
conn.commit();
}
catch (SQLException e)
{
try
{
conn.rollback();
}
catch (SQLException ex)
{
Logger.getLogger(connDb.class.getName()).log(Level.SEVERE,null, ex);
}
}
finally
{
try
{
conn.setAutoCommit(true);
}
catch (SQLException ex)
{
Logger.getLogger(connDb.class.getName()).log(Level.SEVERE,null, ex);
}
}
}
Where the variable part that differs between methods is
stmt.executeUpdate("insert into courses values " + values);
Some times it is several inserts, sometimes it is deletes. I Miss using Macros coming from C++, but I am sure there is a way not to repeat all this transaction code for each method.
help ?
(conn and stmt are class members of types java.sql.Connection and java.sql.Statement)