yierxiansheng 2012-08-27
jOOQ 2.5.0 首次增加对 Firebird 数据库的支持,支持乐观锁,以及新增对 Oracle 很多特性的支持,改进的 API 和新的手册。
jOOQ 高效的合并了复杂SQL、类型安全、源码生成、Active Records、存储过程以及高级数据类型的 Java 类库。
示例代码:
// Create a new record and insert it into the database TBookRecord book = create.newRecord(T_BOOK); book.setTitle("My first book"); book.store(); // Update it with new values book.setPublishedIn(2010); book.store(); // Delete it book.delete();