def create_new_db(path):
    db = DB(path)
    db.setAutocommit(True)
    _createDB(db)
    db.__exit__(db)