SQLiteException

时间:2012-07-14 00:50:41

标签: android database

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并且存在语法错误 我不知道是什么导致了这个错误。

2 个答案:

答案 0 :(得分:0)

尝试使用其他一些列名而不是id(在您的第一个列名中)。

答案 1 :(得分:0)

试试这个代码..对我很好..

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) );";
希望这会帮助你..