Send Arduino Data into MySQL using ESP8266

Hi All,

I badly need your assistance please on this. Ive been doing some research but cant seem to find one. Is there any way or can you show me how can I send my Arduino Energy Monitoring Data into MySQL Database using ESP8266 without connecting the Arduino board into the USB Serial of the computer. :frowning:

Scenario: I have an existing arduino energy monitoring system connected to my PC and sending data into the database via python script. What I'd like to do is make it wireless to send data to database through ESP8622. I dont have any idea though, I did some research but cant seem to find one.

I dont have any idea though, I did some research but cant seem to find one.

When I got my ESP8622, I did some research, too. What I found was that there are libraries available for it, and that the libraries come with examples of using the ESP8266 as a client. THAT is what you need to do, to make GET requests, to request that the server execute a script, passing it some data. The script is solely responsible for doing whatever needs doing with the data, such as putting the data in some columns in some table in some database, if that is what you want to do with the data.