Uses of Interface
cool.scx.jdbc.result_handler.ResultHandler
Packages that use ResultHandler
-
Uses of ResultHandler in cool.scx.jdbc.result_handler
Methods in cool.scx.jdbc.result_handler that return ResultHandlerModifier and TypeMethodDescriptionstatic <C> ResultHandler<C> ResultHandler.ofBean(BeanBuilder<C> beanBuilder) static <C> ResultHandler<C> static <C> ResultHandler<C> static <C> ResultHandler<Void> ResultHandler.ofBeanConsumer(BeanBuilder<C> beanBuilder, Consumer<C> consumer) static <C> ResultHandler<Void> ResultHandler.ofBeanConsumer(Class<C> clazz, Consumer<C> consumer) static <C> ResultHandler<Void> ResultHandler.ofBeanConsumer(Class<C> clazz, Function<Field, String> columnNameMapping, Consumer<C> consumer) static <C> ResultHandler<List<C>> ResultHandler.ofBeanList(BeanBuilder<C> beanBuilder) static <C> ResultHandler<List<C>> ResultHandler.ofBeanList(Class<C> clazz) static <C> ResultHandler<List<C>> ResultHandler.ofBeanList(Class<C> clazz, Function<Field, String> columnNameMapping) static ResultHandler<Map<String, Object>> ResultHandler.ofMap()static ResultHandler<Map<String, Object>> static ResultHandler<Void> ResultHandler.ofMapConsumer(Consumer<Map<String, Object>> consumer) static ResultHandler<Void> ResultHandler.ofMapConsumer(Supplier<Map<String, Object>> mapSupplier, Consumer<Map<String, Object>> consumer) static ResultHandler<List<Map<String, Object>>> ResultHandler.ofMapList()static ResultHandler<List<Map<String, Object>>> static <C> ResultHandler<C> ResultHandler.ofSingleValue(int columnIndex, Class<C> clazz) static <C> ResultHandler<C> ResultHandler.ofSingleValue(String columnName, Class<C> clazz) -
Uses of ResultHandler in cool.scx.jdbc.sql
Methods in cool.scx.jdbc.sql with parameters of type ResultHandlerModifier and TypeMethodDescription<T> TSQLRunner.query(SQL sql, ResultHandler<T> resultHandler) query (自动管理连接)<T> TSQLRunner.query(Connection con, SQL sql, ResultHandler<T> resultHandler) query