タイトルと同じように、メールアドレスをSQLiteデータベースに入力できません。エラーは次のとおりです。
02-01 09:49:52.300: I/SqliteDatabaseCpp(16157): sqlite returned: error code = 1, msg = near "@gmail": syntax error, db=/data/data/com.proj.db/databases/FormDetails
データベースの作成に問題はありません。電子メールの列に追加したのはごく最近のことで、このエラーが発生します。「@」記号をデータベースに入力できないためですか?
テーブルの私のコード:
String insertNewFormDetails = "create table if not exists " + TABLE_NAME + " ( " + BaseColumns._ID + " integer primary key autoincrement, "
+ NAME + " text not null, "
+ SCHOOL + " text not null, "
+ CURRENTDATE + " text not null, "
+ FORMTYPE + " text not null, "
+ EMAIL + " text not null);";
db.execSQL(insertNewFormDetails);