After running the project, you can open the HyperSQL database viewer from Studio Pro by going to Console → Advanced → Start built-in database viewer to inspect the database.
In the MyFirstModulemodule, go to domain model and right click workentity and click "Create Overview Pages" which will create 2 pages: Work_Overview and Work_NewEdit
Afterwards you can give spesific user role (ie: Administrator) access permission to these pages and add Work_Overview to the App->Navigation
By accesing the Work overview page with the administrator account you can now view records and delete whichever you need to.
hi,
In Mendix Studio Pro 10.24, there is no built-in UI inside Studio Pro that lets you browse and delete runtime entity data for a deployed app. Studio Pro is a development/modeling tool, not a database management tool.
When you run your app locally inside Studio Pro, you can inspect and manage the database for that local runtime:
This works only for the local built-in database (HSQLDB) during development.
For environments deployed in Mendix Cloud:
There is no built-in Mendix Cloud database viewer. External tools like pgAdmin or DBeaver are required.
Instead of direct DB deletion, Mendix best practice is to build an Admin Management page inside your app:
1.Create a DataGrid2 for the entity
2.Enable Delete/Action buttons
3.Restrict access to a special admin role
This ensures:
This is the supported Mendix way to manage runtime data.
What is not available
Studio Pro does not provide runtime “data view” or “entity viewer” for deployed environments.
You cannot edit/delete records in cloud databases directly from Studio Pro.