0

我有这个表:

-record(person, {id, firstname, lastname}).

它包含以下值:

13  asma   chabani
14  nawel  jirard
15  ahme   bahri

我想显示每条记录的名字和姓氏:

我尝试:

test()->
    Match=#person{_ = '_'}, %Will match all records
    Fun =
      fun() ->
        List = mnesia:match_object(Match),
        lists:foreach(fun(X) ->
                        M=X#person.fistname,
                        H=X#person.lastname,
                        io:format("~s~n",[M]),
                        io:format("~s~n",[H])
                      end,
                      List)
      end.

但它显示此错误:

model:test().
#Fun<model.186.53419390>
4

1 回答 1

2

你到底忘记了 mnesia:transaction(Fun) 吗?或者只是乐趣()。

于 2013-02-22T12:53:46.140 回答