0

add JdbcTemplate

like Spring Data
This commit is contained in:
2021-01-02 20:27:11 +03:00
parent 5f2e208453
commit c0c1ede462
9 changed files with 320 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
package ghast.database;
import java.sql.ResultSet;
import java.sql.SQLException;
public interface ResultSetExtractor<T> {
T extractData(ResultSet rs) throws SQLException, DataAccessException;
}