Package org.jooq.util.maven.example.mysql

Examples of org.jooq.util.maven.example.mysql.Test2Factory.insertInto()


        Test2Factory create = new Test2Factory(connection);

        create.delete(T_BOOLEANS).execute();

        assertEquals(1,
        create.insertInto(T_BOOLEANS)
              .set(T_BOOLEANS.ID, 1)
              .set(T_BOOLEANS.ONE_ZERO, Boolean_10._0)
              .set(T_BOOLEANS.TRUE_FALSE_LC, BooleanTrueFalseLc.true_)
              .set(T_BOOLEANS.TRUE_FALSE_UC, BooleanTrueFalseUc.FALSE)
              .set(T_BOOLEANS.Y_N_LC, BooleanYnLc.y)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.