Methods in com.framework.jdto.jdbc.wrapper with parameters of type RowMapper |
java.lang.Object |
StatementWrapper.executeQuery(RowMapper row)
Executes the given SQL statement in the current StatementWrapper Object, which returns a single java.lang.Object type of object.
|
java.lang.Object |
PreparedStatementWrapper.executeQuery(RowMapper row)
Executes the SQL query in this PreparedStatementWrapper object and returns an Object type of object
generated by the query. it takes a RowMapper Object as parameter.This method closes the ResultSet, PreparedStatement
and Connection before returning the Object value.
|