Я написал эту строку для создания базы данных в SQLite, но я получаю ошибку CREATE непредвиденный прямо перед "CREATE corso".Это строка:
static final String DATABASE_CREAZIONE =
"CREATE TABLE utente (id integer primary key autoincrement, "
+ "nome text not null, cognome text not null, "
+ "email text not null, password text not null);"
+ "CREATE TABLE corso (id integer primary key autoincrement," +
"nome text not null);" +
"CREATE TABLE prenotazione (id_utente integer primary key autoincrement, "
+ "id_docente integer primary key autoincrement, data DATETIME not null);"+
"CREATE TABLE docenza (id integer primary key autoincrement, "
+ "nome_corso text not null, nome_prof text not null); "+
"CREATE TABLE professore (id integer primary key autoincrement, "
+ "nome text not null, cognome text not null); ";