Package pro.fessional.wings.faceless.database.jooq
See: Description
-
Interface Summary Interface Description WingsJournalTable WingsAliasTable -
Class Summary Class Description CondBuilder Friendly chained condition builder (1=1) and ((2=2 or 3=3) or (4=4 and 5=5)) can be done by grp-end as follows (1=1).and() .grp() .grp(2=2).or(3=3).end() .and() .grp(4=4).or(5=5).end() .end()WingsJooqUtil WingsJooqDaoJournalImpl In principle, the database information carried by Record should not be spread, so it's recommended to use Pojo instead of Record outside of Dao. For read method, it always returns Pojo; for write method, it supports both Record and Pojo. For the convenience of coding and to reduce data copying, you can use Record for operation. In batch processing, new Record is always used to improve performance. Note that alias is used in multi-table query, filed/condition and table must have the same name, otherwise there will be a syntax error. I.e., fields that are in different alias from the table.WingsJooqEnv Global static variable of wings jooq setting. WingsJooqDaoAliasImpl In principle, the database information carried by Record should not be spread, so it's recommended to use Pojo instead of Record outside of Dao. For read method, it always returns Pojo; for write method, it supports both Record and Pojo. For the convenience of coding and to reduce data copying, you can use Record for operation. In batch processing, new Record is always used to improve performance. Note that alias is used in multi-table query, filed/condition and table must have the same name, otherwise there will be a syntax error. I.e., fields that are in different alias from the table.