public static final String GTABLE_CREATE = "create table grades (id integer primary key autoincrement, " +
"coursegrade text not null, c_id text not null, type text not null);";
在这段代码中,我得到一个运行时错误,它说SQLiteException
存在一个语法错误,我不知道是什么导致了这个错误。
尝试使用其他列名而不是 id(在您的第一个列名中)。
试试这个代码..对我来说很好..
private static final String TABLE_CREATE =
"create table if not exists registration(_id integer primary key autoincrement,"
+"name varchar(50), address varchar(50) not null, apt_no varchar(50), city varchar(50) not null,"
+"state varchar(50), county varchar(50), zipcode varchar(50) ,"
+"property_value varchar(50) not null, property_type varchar(50) );";
希望这会帮助你..