Uses of Class
com.github.drinkjava2.jdbpro.DefaultOrderSqlHandler

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

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

Subclasses of DefaultOrderSqlHandler in com.github.drinkjava2.jdbpro.handler
 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 DefaultOrderSqlHandler in com.github.drinkjava2.jsqlbox.handler
 

Subclasses of DefaultOrderSqlHandler in com.github.drinkjava2.jsqlbox.handler
 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.