Some progress toward implementing connection to DB and auto-schema-creation.
[cfb.git] / prod / net / jaekl / cfb / db / driver / DbDriver.java
index 169cfee3553b8cc2e247bea6914b97b40b5c5b70..fa3886248522012a5b8069c9e0c600ab7c36a92f 100644 (file)
@@ -19,7 +19,7 @@ public abstract class DbDriver {
        // Load the JDBC driver
        public abstract void load() throws ClassNotFoundException;
        
-       public abstract Connection connect(String host, int port, String user, String pass);
+       public abstract Connection connect(String host, int port, String dbName, String user, String pass) throws SQLException;
        
        public boolean createTable(Connection con, Table table) throws SQLException {
                String sql = createTableSql(table);