Page 1 of 1

How do I query the database from outside Appery.io

Posted: Mon Aug 03, 2015 1:49 am
by A.W.H.

i.e ModeAnalytics, where I can sign in and perform mongo queries on the data


How do I query the database from outside Appery.io

Posted: Mon Aug 03, 2015 6:34 am
by Serhii Kulibaba

Hello,

Please follow this documentation: https://devcenter.appery.io/documenta...


How do I query the database from outside Appery.io

Posted: Mon Aug 03, 2015 6:48 pm
by A.W.H.

Besides using CURL commands, is there a way to connect to the database and use, say, python?


How do I query the database from outside Appery.io

Posted: Sun Aug 09, 2015 6:32 pm
by Serhii Kulibaba

You can use get/post/put/delete requests.


How do I query the database from outside Appery.io

Posted: Tue Aug 11, 2015 8:20 pm
by A.W.H.

Can you help me understand how to code a request? I only see curl commands which are executable through terminal command prompt, no?


How do I query the database from outside Appery.io

Posted: Sat Aug 15, 2015 1:08 pm
by Illya Stepanov

Every request to the Database is a REST/HTTP request, so you will need to develop REST service using preferable language and make requests through it.

By the way you can use any ready-to-use tools like Postman (https://www.getpostman.com/) to make requests to your database.


How do I query the database from outside Appery.io

Posted: Sat Aug 15, 2015 7:51 pm
by A.W.H.

Thanks.