Package com.healthmarketscience.sqlbuilder.dbspec.basic

Examples of com.healthmarketscience.sqlbuilder.dbspec.basic.DbTable


  protected DbTable createSqlTable(SqlMapping mapping) {
    // create default schema
    DbSpec spec = new DbSpec();
    DbSchema schema = spec.addDefaultSchema();

    DbTable table = schema.addTable(mapping.getTableName());

    addColumn(table, primaryColumn);
    for(Map.Entry<String, Column> entry : mapping.getFields().entrySet()) {
      addColumn(table, entry.getValue());
    }
View Full Code Here

TOP

Related Classes of com.healthmarketscience.sqlbuilder.dbspec.basic.DbTable

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.