私はこのフォーマットを持つmnesiaに2つのテーブルを持っています:
mnesia:create_table(person,
[{disc_copies, [node()]},
{attributes, record_info(fields, person)}]),
mnesia:create_table(person_backup,
[{disc_copies, [node()]},
{attributes, record_info(fields, person)},
{record_name, person}]),
この役割を持つ関数を開発したい:
テーブル person からすべてのデータを読み取り、このデータをテーブル person_backup に書き込みます。
バックアップ機能を試してみます(それはあなたのコードです)
testbackup()->
mnesia:transaction(fun() ->
Records = mnesia:select(person, [{'_', [], ['$_']}]),
[ok = mnesia:write(person_backup, Record, write) || Record <- Records]
end).
この関数を実行すると、このメッセージが表示されます
model:testbackup().
{atomic,[ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,ok,
ok,ok,ok,ok,ok,ok,ok,ok,ok,ok|...]}
テーブル person_backup で完全に機能します テーブル person と同じデータがあります
しかし、model:reset() を実行すると。
テーブル person とテーブル person_backup のデータが削除されます
通常、人のデータは削除されます
reset() のコードは次のとおりです。
reset() ->
stop(),
destroy(),
create(),
start(),
{ok}.
destroy() ->
mnesia:start(),
mnesia:delete_table(counter),
mnesia:delete_table(person),
mnesia:stop(),
mnesia:delete_schema([node()]).
create() ->
mnesia:create_schema([node()]),
mnesia:start(),
mnesia:create_table(counter, [{attributes, record_info(fields, counter)}, {disc_copies, [node()]}]),
mnesia:create_table(person, [{attributes, record_info(fields, person)}, {disc_copies, [node()]}]),
mnesia:create_table(person_backup,[{disc_copies, [node()]},{attributes, record_info(fields, person)},
{record_name, person}]),
mnesia:stop().
そして、私はこの問題を別の方法で解決しようとしています
関数testcreateがあります
testcreate()->
%% mnesia:create_schema([node()]),
mnesia:start(),
mnesia:create_table(person_backup, [{attributes, record_info(fields, person_backup)}, {disc_copies, [node()]}]).
そして私が持っている記録では
-record(person, {id, token, password, pin, key, salt, pin_salt, subscription_date, first_name, last_name, alias, gender, status,
taxid, formid, idcard, birth_year, birth_month, birth_date}).
-record(person_backup, {id, token, password, pin, key, salt, pin_salt, subscription_date, first_name, last_name, alias, gender, status,
taxid, formid, idcard, birth_year, birth_month, birth_date}).
関数testbackupを実行すると、このメッセージが表示されます
2> model:testbackup().
{aborted,{bad_type,{person,215,"97808233",
"bddcba13effb029e93aaab6fdc3c4587",
"d707aa5f940a468e149686b3eaafd946",
"230d8294d47f6fa2cc1761deab52a879",
"1360713353326653","1360713353326653",undefined,
"souad","sallami",[],"M.","preregistered",
undefined,"Z008022","04705808","CIN",[],
"d41d8cd98f00b204e9800998ecf8427e","0","user",0,
{{...},...},
undefined,...}}}