ifis-tu-bs / sqlalchemist

Learn SQL by playing a game.
Apache License 2.0
5 stars 0 forks source link

TaskSet DB duplicate Create on UserStatement #239

Open svdwall opened 8 years ago

svdwall commented 8 years ago

Könnte Hier her kommen SQLParser.java:77-82

        if((status = dbConnection.initDBConn()) != null) {
            return new SQLResult(task, status);
        }

        if((status = dbConnection.createDB()) != null) {
            return new SQLResult(task, status);
        }