Package com.github.drinkjava2.jsqlbox.handler

Class Summary
EntityListHandler EntityListHandler is the SqlHandler used explain the Entity query SQL (For example 'select u.** from users u') and return a List instance
EntityNetHandler EntityNetHandler used to convert SQL query result to EntityNet
PaginHandler PaginHandler is a SqlHandler used to translate SQL to paginated SQL
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
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
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.