Database to Arduino

Hello,

I would like to connect my Arduino to an online database where the Arduino will constantly be updating the online database. Does anyone know how I can do this? Do you guys also know any database programs that I can use for beginners in database programming?

Thank you.

use MYSQL to learn database but be aware it is far from trivial.

You can write a PHP front-end that accepts HTTP POST packets from the Arduino with ethernetshield and stores these in MYSQL db.

So your steps will be

  • learn programming the arduino
  • learn ethernet programming on Arduino (including its limits)
  • learn MYSQL
  • learn PHP

the good news is that there are a lot of examples on the net.

Thank you for your reply! :slight_smile: