Guest User

Untitled

a guest
Jan 19th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. %% http_listテーブルにレコードを追加/更新する
  2. add_record_http_list(Id, System, Uri, Port) ->
  3. Row = #http_list{id=Id, system=System, uri=Uri, port=Port},
  4. F = fun() ->
  5. mnesia:write(Row)
  6. end,
  7. mnesia:transaction(F).
Add Comment
Please, Sign In to add comment