- selectMany(String, Class<E>, Object...) - Method in class net.sourceforge.kopylec.sqlmapper.core.SQLRunner
-
Runs an SQL query and maps its results to a list of objects.
- selectMany(String, MultipleResultsMapper<E>, Object...) - Method in class net.sourceforge.kopylec.sqlmapper.core.SQLRunner
-
Runs an SQL query and maps its results to a list of entities.
- selectOne(String, Class<E>, Object...) - Method in class net.sourceforge.kopylec.sqlmapper.core.SQLRunner
-
Runs an SQL query and maps its result to a single object.
- selectOne(String, SingleResultMapper<E>, Object...) - Method in class net.sourceforge.kopylec.sqlmapper.core.SQLRunner
-
Runs an SQL query and maps its results to a single entity.
- SingleResultMapper<T> - Class in net.sourceforge.kopylec.sqlmapper.core
-
A basic row mapper which maps results of an SQL query to a single object
(entity).
- SingleResultMapper() - Constructor for class net.sourceforge.kopylec.sqlmapper.core.SingleResultMapper
-
- SQLMapperException - Exception in net.sourceforge.kopylec.sqlmapper.exception
-
A runtime exception that is thrown when an error occurs while using
sql-mapper
.
- SQLMapperException(String) - Constructor for exception net.sourceforge.kopylec.sqlmapper.exception.SQLMapperException
-
- SQLMapperException(String, Throwable) - Constructor for exception net.sourceforge.kopylec.sqlmapper.exception.SQLMapperException
-
- SQLRunner - Class in net.sourceforge.kopylec.sqlmapper.core
-
A main class of sql-mapper
.
- SQLRunner(DataSource) - Constructor for class net.sourceforge.kopylec.sqlmapper.core.SQLRunner
-