我写这个字符串是为了在 SQLite 中创建一个数据库,但是在“CREATE corso”之前我得到了一个CREATE 意外错误。这是字符串:
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); ";
SMILET
相关分类