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.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
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.