Esempio n. 1
0
 public void onAfter(Connection conn, ResultSet rs) throws SQLException {
   if (null != after) getContext().setResult(after.invoke(conn, rs, this));
 }
Esempio n. 2
0
 public void onBefore(Connection conn) throws SQLException {
   if (null != before) before.invoke(conn, null, this);
 }