- query(DBCommand, DBRecordMapper<K>) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping each row to a Java object via a
DBRecordMapper.
- query(DBCommand, DBReaderExtractor<K>) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand and handles the DBReader with the provided
DBReaderExtractor.
- query(DBCommand, DBRecordCallbackHandler) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand and handles each row of the DBReader with the
provided DBRecordCallbackHandler.
- queryForBean(DBCommand, Class<T>) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand query and maps a single row to Class object
using DBReader.getBeanList method.
- queryForBeanList(DBCommand, C, Class<T>, int) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand query and maps each row to Class object
using DBReader.getBeanList method.
- queryForBeanList(DBCommand, Class<T>, int) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand query and maps each row to Class object
using DBReader.getBeanList method.
- queryForBeanList(DBCommand, Class<T>) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand query and maps each row to Class object
using DBReader.getBeanList method.
- queryForInteger(DBCommand, DBColumnExpr, Integer) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping a single column to a single Integer.
- queryForIntegerList(DBCommand, DBColumnExpr, Integer) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, extracting a single column to a List of
Integers.
- queryForList(DBCommand, DBColumnExpr) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping a single column to a Java object
using on DBRecordData.getValue() method.
- queryForLong(DBCommand, DBColumnExpr, Long) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping a single column to a single Long.
- queryForLongList(DBCommand, DBColumnExpr, Long) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, extracting a single column to a List of Long.
- queryForObject(DBCommand, DBRecordMapper<K>) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping a single row to a Java object using
the provided DBRecordMapper.
- queryForString(DBCommand, DBColumnExpr) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, mapping a single column to a single String.
- queryForStringList(DBCommand, DBColumnExpr) - Method in class org.apache.empire.spring.EmpireTemplate
-
Executes a given DBCommand, extracting a single column to a List of
Strings.