Package org.apache.camel.component.sql
Interface RowMapperFactory
-
- All Known Implementing Classes:
DefaultRowMapperFactory
public interface RowMapperFactoryFactory for creatingRowMapper.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.jdbc.core.RowMapper<?>newBeanRowMapper(Class<?> mappedClass)Creates a new bean based row mapperorg.springframework.jdbc.core.RowMapper<?>newColumnRowMapper()Creates a new column based row mapper
-
-
-
Method Detail
-
newColumnRowMapper
org.springframework.jdbc.core.RowMapper<?> newColumnRowMapper()
Creates a new column based row mapper
-
newBeanRowMapper
org.springframework.jdbc.core.RowMapper<?> newBeanRowMapper(Class<?> mappedClass)
Creates a new bean based row mapper- Parameters:
mappedClass- the mapped class
-
-