Fixed some things

This commit is contained in:
Ziver Koc 2010-10-07 11:27:23 +00:00
parent b8bf1946d5
commit 985ab58235
3 changed files with 13 additions and 13 deletions

View file

@ -11,5 +11,5 @@ public interface SQLResultHandler<T> {
* @param stmt is the query
* @param result is the ResultSet
*/
public T handle(Statement stmt, ResultSet result) throws SQLException;
public T handleQueryResult(Statement stmt, ResultSet result) throws SQLException;
}