Java的ORM框架jOOQ 1.5.8 发布

13年前
Java的ORM框架 jOOQ 1.5.8 发布。该版本增加了两个重要的新的RDBMS被支持:SQL Server 和 Sybase。

There is now full support for the non-SQL standard LIMIT clause, even in dialects where the LIMIT clause is not supported natively (especially Oracle, but also DB2, SQL Server, and Sybase, which have limitations). jOOQ simulates LIMITs by rendering nested selects filtering on ROWNUM (Oracle) or on ROW_NUMBER() (DB2, SQL Server, and Sybase).

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();
项目主页:http://sourceforge.net/apps/trac/jooq