|
Class Summary |
| ActiveRecord<T> |
Entity class extended from ActiveRecord will have CRUD methods, see below
difference in jSqlBox to save ActiveRecord entity and normal entity(POJO)
into database: |
| JSQLBOX |
JSQLBOX store some public static methods, usually used for static import to
simplify programming |
| SqlBoxContext |
SqlBoxContext is extended from DbPro, DbPro is extended from QueryRunner, by
this way SqlBoxContext have all JDBC methods of QueryRunner and DbPro. |
| SqlBoxContextUtils |
|
| Tail |
Tail is an empty entity only used to deal tables no any entity mapping, so
each CURD need add a tail("table") as parameter, for example:
new Tail().putTail("user_name", "Tom", "age", 10).insert(JSQLBOX.tail("some_table")); |