1

我在使用时遇到了一些问题,mnesia:select/2但我认为它们与 MatchHead 有关。在我的代码中,我有以下记录:

-record(pet_info, {name, id, type}).

我在 Mnesia 表(即 pet_table)中使用此记录放置了一些值。我使用 tv:start()) 检查了它们实际上是否在表中。

我想检索所有 ID,但我的代码总是返回一个空列表。

这是我的代码的显着部分

F = fun() ->
            Pet = #pet_info{id = '$1', _ = '_'},
            mnesia:select(pet_table, [{Pet, [], ['$1']}])
    end,
Reply = case mnesia:transaction(F) of
            {atomic, ResultOfFun} ->
                ResultOfFun;
            {aborted, _Reason} ->
                {error, aborted}
        end,
Reply.

你能告诉我错误在哪里吗?

4

1 回答 1

0

我找到了解决我的问题的方法。

该表创建为:

mnesia:create_table(pet_table, [{disc_copies, [node()]},
                                {type, set},
                                {attributes, record_info(fields, pet_info)}])

这没有用。

另一方面,通过将表的名称更改为与它工作的记录相同的名称。

mnesia:create_table(pet_info, [{disc_copies, [node()]},
                                {type, set},
                                {attributes, record_info(fields, pet_info)}])
于 2013-04-11T08:09:50.493 回答