summaryrefslogtreecommitdiffstats
path: root/src/com/iciql/util/GenerateModels.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/iciql/util/GenerateModels.java')
-rw-r--r--src/com/iciql/util/GenerateModels.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/iciql/util/GenerateModels.java b/src/com/iciql/util/GenerateModels.java
index 69ce852..ce98105 100644
--- a/src/com/iciql/util/GenerateModels.java
+++ b/src/com/iciql/util/GenerateModels.java
@@ -128,13 +128,15 @@ public class GenerateModels {
* automatically trim strings that exceed maxLength
*/
public static void execute(String url, String user, String password, String schema, String table,
- String packageName, String folder, boolean annotateSchema, boolean trimStrings) throws SQLException {
+ String packageName, String folder, boolean annotateSchema, boolean trimStrings)
+ throws SQLException {
Connection conn = null;
try {
conn = DriverManager.getConnection(url, user, password);
Db db = Db.open(url, user, password.toCharArray());
DbInspector inspector = new DbInspector(db);
- List<String> models = inspector.generateModel(schema, table, packageName, annotateSchema, trimStrings);
+ List<String> models = inspector.generateModel(schema, table, packageName, annotateSchema,
+ trimStrings);
File parentFile;
if (StringUtils.isNullOrEmpty(folder)) {
parentFile = new File(System.getProperty("user.dir"));