Package jodd.db.oom.tst

Examples of jodd.db.oom.tst.Enumerator


    String sql = "create table ENUMERATOR(ID int, NAME varchar(20), STATUS int)";

    DbQuery query = new DbQuery(sql);
    query.executeUpdate();

    Enumerator e = new Enumerator();
    e.id = 2;
    e.name = "Ikigami";
    e.status = Enumerator.STATUS.ONE;

    DbSqlGenerator gen = insert(e);
View Full Code Here

TOP

Related Classes of jodd.db.oom.tst.Enumerator

Copyright © 2018 www.massapicom. 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.