Insert Queries in Database

1
I want to know the procedure on how we can load data into Database(postgres) using insert queries from m2ee application server Do we need to have special permissions to run insert scripts?
asked
1 answers
1

I assume that you want to insert data in an external (not Mendix) database. You are not allowed to insert data in the Mendix database directly.

See the database replicator how to connect to an external database.

Better is to publish a webservice for that and call that webservice from mendix.

answered