/
/*
Gateway for method interception
String methodName = method.getName();
debug("PROXY method: " + methodName);
// No-op if any of the following calls
if (methodName.equals("close") || methodName.equals("commit") || methodName.equals("rollback")) {
return null;
}
// Normal case is just to forward on to the real connection
return method.invoke(connection, args);