Connect my Local database to Controllino Maxi Automation through ethernet

Hi all,

I'm very new in arduino coding and unfortunatly i do not know how to link my Controllino Maxi Automation (https://www.controllino.biz/controllino-maxi/maxi-automation/) to my Database (localhost).

Would you have such advises for me ? (What libraries should i use ? How should i use them ?)

For info, i would like to send lots of data from my Automate and would like also to organize them in the database.

Thank you in advance, and if something is not clear (more info needed) do not hesitate to ask me.

Jules.

to my Database (localhost).

localhost means that the client (the Arduino) and the server are the SAME machine. That is NOT the case, is it?

So, your database is NOT on localhost.

You COULD have the controllino send serial data to the PC, and have some application on the PC use that data and write to your database. Or you could use an ethernet or WiFi shield, and have web server software on the PC, with php scripts to handle the GET or POST requests, and write to your database.

Hi,

Thanks for the answer. Effectivly, sorry for the confusion i wanted to say a server located on my own computer.

I will use the web server solution.

Thanks !