View mnesia table in wxErlang

An mnesia table can be viewed using the observer module;

https://www.erlang.org/doc/man/observer

With 51 modules it is indeed impressive. Thanks to all those creators/coders.

As a part of my erlang journey, I seek to view an mnesia table in wxErlang.

Should I be using wxListCtrl or wxGrid? Or, something else perhaps?

Well, Observer uses wxListCtrl, so that’s probably a good starting point: https://github.com/erlang/otp/blob/master/lib/observer/src/observer_tv_table.erl#L130

1 Like

Thank you, filmor.