I changed the signature of a static method from
public static synchronized
void simpleDbExecute(ExbJobContext jobContext,
String statementName, String dbSource)
to
public static synchronized
boolean simpleDbExecute(ExbJobContext jobContext, String statementName, String dbSource)
Now another class is getting an error when trying to call the method...
private void init(ExbJobContext ejc) {
DatabaseHelper.simpleDbExecute(ejc,"deleteAllOutageDet","dest.db.name");
ERROR: java.lang.NoSuchMethodError: com.ibm.esmrt.exb.util.DatabaseHelper: method
simpleDbExecute(Lcom/ibm/esmrt/exb/base/ExbJobContext;Ljava/lang/String;Ljava/lang/String;)V not found at
com.ibm.esmrt.app.abc.avail.DeliverOutageDetPreProcessor.init(DeliverOutageDetPreProcessor.java:33)
Any ideas on why this might be happening?
[ March 13, 2008: Message edited by: Marilyn de Queiroz ]