diff --git a/src/com/binarythought/jdbcjson/JDBCJSON.java b/src/com/binarythought/jdbcjson/JDBCJSON.java index 754aa2a..ee6c453 100644 --- a/src/com/binarythought/jdbcjson/JDBCJSON.java +++ b/src/com/binarythought/jdbcjson/JDBCJSON.java @@ -63,6 +63,9 @@ public class JDBCJSON String out = properties.getProperty(job + ".out"); if(out == null){ out = job + ".json"; } + String driver = properties.getProperty(job + ".driver"); + if(driver != null){ Class.forName(driver); } + Connection conn = null; JsonWriter writer = null; try {