you may find this useful: https://docs.mendix.com/appstore/connectors/database-connector/
Did you place the jdbc url between single quotes?
That is the indication that it is a string.
Hey
It’s slightly old but I watched this 4 part tutorial and have just finished creating a full app with a sql db as a backend.
https://www.youtube.com/watch?v=eJVFyDONU9Y
From a quick look you have not chose a result object, you need to create an empty object before the call so it knows the format it returns in.
Additionally it is better to use the parameterised actions so you can just specify in there. Also create constants for the url, pwd, username so you don’t have to copy paste everytime can just treat them as variables.
This is also how you import data to your mendix frontend. The tutorials solve your issue as well.
You need to create an entity to capture the resultset. Something like this:
In the microflow, you create one object of the entity and pass it as the result object.
And pass it as $NewProject as the results object.
i think i'm going in the right direction
Still no output… :(