Package org.beangle.db.meta

Examples of org.beangle.db.meta.TableMetadata.sqlCreateString()


  public void testlistMetadata() {
    listMetadata();
    Map<String, TableMetadata> tables = meta.getTables();
    for (Map.Entry<String, TableMetadata> entry : tables.entrySet()) {
      TableMetadata m = entry.getValue();
      log.info(m.sqlCreateString(meta.getDialect()));
    }
  }
}
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.