View Javadoc
1 2 package net.sf.voruta; 3 4 /*** Service provider interface used to prosess results returned from SQL query 5 * @author baliuka 6 */ 7 public interface ResultSetHandler{ 8 9 /*** Callback method 10 * @param rs Result set returned by SQL query 11 * @param returnType method result type 12 * @param params method parameters 13 * @throws SQLException on error in query processing 14 * @return transformed value, can be null 15 */ 16 public Object handle(DbResultSet rs,Class returnType,Object params[]) 17 throws Exception; 18 19 }

This page was automatically generated by Maven