BOnjour,
Dans cette exemple, le résultat de la requette est envoyée sur le port serie et j aimerais bien avoir cette information dans une string ou variable.
Merci d'avance
Eric
Serial.println("\nRunning SELECT from PROGMEM and printing results\n");
// Initiate the query class instance
MySQL_Cursor *cur_mem = new MySQL_Cursor(&conn);
// Execute the query with the PROGMEM option
cur_mem->execute(query, true);
// Show the results
cur_mem->show_results();
// Deleting the cursor also frees up memory used
delete cur_mem;
}