Regarding the Mendixs database

0
Hi, I'm about to start my dissertation in MSc in computing. I'm so interested in using Mendix as a developing tool for my project but my only concern is the capability of Mendix dealing with large database. do i need an external database such as SQL to deal with a large database in Mendix or not?. I look forward hearing from you. Regards
asked
1 answers
6

You can run Mendix in your development environment using the so-called 'built-in database'. This is a database implementation that entirely runs inside the working memory that is allocated to the mendix process itself. This is convenient for adding a little amount of test data without having to configure an additional database system like PostgreSQL or MS SQL Server.

But! If you want to work with more data than just that 'little amount of test data that easily fits into memory', yes, you need to run a database server itself, which you connect the Mendix server process to. In this case, your database can be as large as the external database system can handle.

answered