Hi, in the example code:
....
Serial.println("Connecting mysql...");
if (conn.connect(server_addr, 3306, user, password)) {
delay(1000);
Serial.println("Connection mysql OK.");
// Initiate the query class instance
....
why the delay(1000) is added? Is it mandatory or can it be changed/removed ( and, depending on what?) ?
Thanks
VS