Uses of Interface
liquibase.executor.jvm.RowMapper
Packages that use RowMapper
-
Uses of RowMapper in liquibase.executor.jvm
Classes in liquibase.executor.jvm that implement RowMapperModifier and TypeClassDescriptionclass
RowMapper
implementation that creates ajava.util.Map
for each row, representing all columns as key-value pairs: one entry for each column, with the column name as key.Fields in liquibase.executor.jvm declared as RowMapperMethods in liquibase.executor.jvm that return RowMapperModifier and TypeMethodDescriptionprotected RowMapper
JdbcExecutor.getColumnMapRowMapper()
Create a new RowMapper for reading columns as key-value pairs.protected RowMapper
JdbcExecutor.getSingleColumnRowMapper
(Class requiredType) Create a new RowMapper for reading result objects from a single column.Methods in liquibase.executor.jvm with parameters of type RowMapperModifier and TypeMethodDescriptionJdbcExecutor.query
(SqlStatement sql, RowMapper rowMapper) JdbcExecutor.query
(SqlStatement sql, RowMapper rowMapper, List<SqlVisitor> sqlVisitors) JdbcExecutor.queryForObject
(SqlStatement sql, RowMapper rowMapper) JdbcExecutor.queryForObject
(SqlStatement sql, RowMapper rowMapper, List<SqlVisitor> sqlVisitors) Constructors in liquibase.executor.jvm with parameters of type RowMapperModifierConstructorDescriptionRowMapperResultSetExtractor
(RowMapper rowMapper) Create a new RowMapperResultSetExtractor.RowMapperResultSetExtractor
(RowMapper rowMapper, int rowsExpected) Create a new RowMapperResultSetExtractor.