Import an existing database structure into a Mendix Domain Model

4
I have an existing database structure in SQL DDL (exported from MySQL). Is there a way to import such a structure as a Mendix Domain Model even in a very rough way? When I say rough I mean, e.g. tables and columns (no relationships, no "exotic" stuff...)
asked
1 answers
1

Not "automagically", but you could write a javaaction that parses the sql dump and imports it as domain entities. Depending on your sql dump it might be a lot of work though...

answered