zoukankan      html  css  js  c++  java
  • jOOQ 2.6.2 发布,Java的ORM框架

    jOOQ 2.6.2 包含小的 bug 修复和重要的性能提升。

    jOOQ 高效的合并了复杂SQL、类型安全、源码生成、Active Records、存储过程以及高级数据类型的 Java 类库。

    01 // Create a new record and insert it into the database
    02 TBookRecord book = create.newRecord(T_BOOK);
    03 book.setTitle("My first book");
    04 book.store();
    05  
    06 // Update it with new values
    07 book.setPublishedIn(2010);
    08 book.store();
    09  
    10 // Delete it
    11 book.delete();
  • 相关阅读:
    Codeforces 798C
    Codeforces 798B
    Codeforces 798A
    HDU
    HDU
    HDU
    加速cin的技巧
    Codeforces Gym
    Codeforces Gym
    Solutions to an Equation LightOJ
  • 原文地址:https://www.cnblogs.com/dushu/p/2901075.html
Copyright © 2011-2022 走看看