String sqlQueryToCreateUndergraduateDetailsTable = "create table if not exists " + TABLE_NAME_GPA + " ( " + BaseColumns._ID + " integer primary key autoincrement, " +"COLUMN_NAME" + " text not null, " +"COLUMN_SURNAME" + " text not null, " +"COLUMN_DATE_OF_BIRTH"+ "text not null, +"COLUMN_ADDRESS" +"text not null," +"COLUMN_EMAIL" +"text not null," +"COLUMN_PHONE_NUMBER" +"text not null," +"COLUMN_CITY" +"text not null," +"COLUMN_PTYE_PAYMENT" +"text not null," +"COLUMN_SHIPPING_TYPE" +"text not null," +"COLUMN_CARD_NUMBER" + "text not null," +"COLUMN_Password" +"text not null);";
我试图保存到数据库,但它给了我一个错误 说....error code = 1, msg = table Customin_ details_able 没有名为“信用卡号码”的栏目