In Erlang programming Mnesia is the distributed database which is written in Erlang. Mnesia is mainly used by Erlang that provides simple queries and can be written with Query List Comprehensions (qlc). Mnesia is a multiuser distributed DBMS specially made for industrial telecommunications applications written in Erlang. In Mnesia database data is organized as a set of tables and each and every table having a name (name should be an atom). Each table is made up of Erlang records and the users will be responsible for the record definitions. And every table also having a set of properties.
Liked By
Write Answer
What is the use of Mnesia in Erlang Programming?
Join MindStick Community
You have need login or register for voting of answers or question.
Tarun Kumar
15-Mar-2016In Mnesia database data is organized as a set of tables and each and every table having a name (name should be an atom). Each table is made up of Erlang records and the users will be responsible for the record definitions. And every table also having a set of properties.