MySQL_Connector_Arduino
MySQL_Connector_Arduino copied to clipboard
Database connector library for using MySQL with your Arduino projects.
When I try to connect to a MySQL database then I get the following error message. ``` ERROR: Timeout waiting for client. Error: -1 = Mysql connection failed. ``` I...
#include // Use this for WiFi instead of Ethernet.h #include #include #define sensorPin A0 byte mac_addr[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress server_addr(10,0,1,35); // IP of...
Hi, the bugfix for the esp core version 3.0.2 has not been added to the latest release so PIO and the Arduino IDE are using a non working version of...
I'm using the QNEthernet.h library on my Teensy 4.1 with Ethernet. As soon as I include the MySQL_Connection.h and compile it, it throws an error that 'Ethernet' is ambiguous. Any...
I used the provided demo and just few alteration and run. below are my code ```c++ #include #include // Use this for WiFi instead of Ethernet.h #include #include IPAddress server_addr(192,168,68,104);...
I noticed that insertion and show variable such as show database are included in demo. I tried to use delete and update but it give an error. Any recommendation for...
I am having an issue connecting with my ESP8266 but using the same code no issue with an ESP32 except for ESP8266WiFi.h for ESP8266 and WiFi.h for ESP32 below is...
Truncated output from MySQL_Cursor.cpp on line 389 Compiling for ESP8266 with MySQL Connector Arduino v1.2.0 Arduino IDE successfully compiled with the following warning: ``` \\rs.local\home\Projects_Computing\Arduino\Sketches\libraries\MySQL_Connector_Arduino\src\MySQL_Cursor.cpp: In member function 'char* MySQL_Cursor::read_string(int*)':...
Got an compiler warning about a unused variable. see line 523: https://github.com/ChuckBell/MySQL_Connector_Arduino/blob/d007607b306dde37b591093f9562ed1370cf99d4/src/MySQL_Packet.cpp#L523 could be fixed by: ` int size __attribute__((unused)) = 0;` ``` .pio\libdeps\esp12e\MySQL Connector Arduino\src\MySQL_Packet.cpp: In member function 'int...
printf() is not method of Serial. Change to print().