Uses of Interface
com.github.drinkjava2.jdbpro.SqlHandler

Packages that use SqlHandler
com.github.drinkjava2.jdbpro   
com.github.drinkjava2.jdbpro.handler   
com.github.drinkjava2.jsqlbox.handler   
 

Uses of SqlHandler in com.github.drinkjava2.jdbpro
 

Classes in com.github.drinkjava2.jdbpro that implement SqlHandler
 class DefaultOrderSqlHandler
          SqlHandler is the Interceptor to do some intercept operation instead of direct access database
 

Fields in com.github.drinkjava2.jdbpro declared as SqlHandler
protected static SqlHandler[] DbProConfig.globalNextSqlHandlers
           
protected  SqlHandler[] ImprovedQueryRunner.sqlHandlers
           
 

Methods in com.github.drinkjava2.jdbpro that return SqlHandler
static SqlHandler[] DbProConfig.getGlobalNextSqlHandlers()
           
 SqlHandler[] ImprovedQueryRunner.getSqlHandlers()
           
 SqlHandler[] DbProConfig.getSqlHandlers()
           
static SqlHandler[] ImprovedQueryRunner.getThreadLocalSqlHandlers()
          Get current thread's ThreadLocal SqlHandler
 

Methods in com.github.drinkjava2.jdbpro that return types with arguments of type SqlHandler
 List<SqlHandler> PreparedSQL.getSqlHandlers()
           
 

Methods in com.github.drinkjava2.jdbpro with parameters of type SqlHandler
 void PreparedSQL.addHandler(SqlHandler handler)
           
 void PreparedSQL.addSqlHandler(SqlHandler sqlHandler)
           
static void DbProConfig.setGlobalNextSqlHandlers(SqlHandler... sqlHandlers)
           
 void ImprovedQueryRunner.setSqlHandlers(SqlHandler[] sqlHandlers)
          Deprecated. 
 void DbProConfig.setSqlHandlers(SqlHandler[] sqlHandlers)
           
static void ImprovedQueryRunner.setThreadLocalSqlHandlers(SqlHandler... handlers)
          Set current thread's ThreadLocal SqlHandler
 

Method parameters in com.github.drinkjava2.jdbpro with type arguments of type SqlHandler
 void PreparedSQL.setSqlHandlers(List<SqlHandler> sqlHandlers)
           
 

Uses of SqlHandler in com.github.drinkjava2.jdbpro.handler
 

Classes in com.github.drinkjava2.jdbpro.handler that implement SqlHandler
 class PrintSqlHandler
          PaginHandler is the AroundSqlHandler used to translate SQL to paginated SQL
 class SimpleCacheHandler
          SimpleCacheHandler is a simple memory cache used to cache SQL query result .
 

Uses of SqlHandler in com.github.drinkjava2.jsqlbox.handler
 

Classes in com.github.drinkjava2.jsqlbox.handler that implement SqlHandler
 class EntityListHandler
          EntityListHandler is the SqlHandler used explain the Entity query SQL (For example 'select u.** from users u') and return a List instance
 class EntityNetHandler
          EntityNetHandler used to convert SQL query result to EntityNet
 class PaginHandler
          PaginHandler is a SqlHandler used to translate SQL to paginated SQL
 class SSHandler
          SSHandler is used to explain alias.** to real columns in SQL, transient columns not included, the example: select u.** from users u ==> select u.name as u_name, u.address as u_address from users u SS means star-star
 class SSMapListHandler
          SSMapListHandler is a SqlHandler used to explain alias.** to real columns in SQL and return a Map List, SS means star-star, example: select u.** from users u ==> select u.name as u_name, u.address as u_address from users u
 class SSTitleArrayListHandler
          SSTitleArrayListHandler is a SqlHandler used to explain alias.** to real columns in SQL and return a List, first row is titles, SS means star-star, example: select u.** from users u ==> select u.name as u_name, u.address as u_address from users u
 



Copyright © 2018. All rights reserved.