Write app data developed with react-native to a remote PostgreSQL database

0

I'm developing a react-native application.

In this application you will basically have some forms to register information, however this information should be saved in a PostgreSQL bd which is already used by a system.

Searching I found the link I believe I would give to use in the application (am I right?) but this ad link made me uncomfortable, but I did not find another alternative, does anyone have any?

    
asked by anonymous 28.08.2017 / 20:28

1 answer

1

To use React Native together with PostgreSQL you will need some language on the backend that can communicate with the DBMS in question, such as PHP, Java, or even Node.js as the tutorial you cited

Once you choose the language, you develop a API so your application can requests for the developed API and then consume or write the data present in your PostgreSQL database.

    
29.08.2017 / 01:47