erlang mnesia ???????????
???????????? ???????[ 2013/10/12 9:41:02 ] ????????
????Mnesia????????????????????????????????????????????к????????????Erlang????????????????????????Mnesia??????????????й???????????????????????????? ????? Mnesia ?????????
????????б??????壺
????%% ?????
????-record( y_account??{ id?? account?? password }).
????%% ??????
????-record( y_info?? { id?? nickname?? birthday?? sex }).
????1??Select ???
?????????????
%%===============================================
%% select * from y_account
%%===============================================
%% ??? mnesia:select
F = fun() ->
MatchHead = #y_account{ _ = '_' }??
Guard = []??
Result = ['$_']??
mnesia:select(y_account?? [{MatchHead?? Guard?? Result}])
end??
mnesia:transaction(F).
%% ??? qlc
F = fun() ->
Q = qlc:q([E || E <- mnesia:table(y_account)])??
qlc:e(Q)
end??
mnesia:transaction(F).
?????????????ε???
%%===============================================
%% select id??account from y_account
%%===============================================
%% ??? mnesia:select
F = fun() ->
MatchHead = #y_account{id = '$1'?? account = '$2'?? _ = '_' }??
Guard = []??
Result = ['$$']??
mnesia:select(y_account?? [{MatchHead?? Guard?? Result}])
end??
mnesia:transaction(F).
%% ??? qlc
F = fun() ->
Q = qlc:q([[E#y_account.id?? E#y_account.account] || E <- mnesia:table(y_account)])??
qlc:e(Q)
end??
mnesia:transaction(F).
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11