CREATE_PARENT_M_LIST テーブルの主キーを CREATE_CHILD_M_LIST への外部キーとして設定する方法
ここに私の質問があります。
// My parent table.
public static String CREATE_PARENT_M_LIST = "create table if not exists "+
DATABASE_TABLE1 + " ( p_id integer primary key autoincrement, "
+ "table_name text);";
// my child table.
public static String CREATE_CHILD_M_LIST = "create table if not exists "
+ DATABASE_TABLE2 + " ( id integer primary key autoincrement, "
+ " symbol text," + " f_id integer,"
+ " foregin key(f_id) references " + DATABASE_TABLE1 + "(p_id));";
f_id 列の近くで構文エラーが発生しています
前もって感謝します。