SQLite3 Library for ESP32 Arduino core

Hi,

Checkout my library that enables access to SQLite3 databases here:

https://create.arduino.cc/projecthub/arundale/sqlite3-library-for-esp32-a76ad1

Github page:

Library for ESP8266:

Let me know your thoughts / comments at arun@siara.cc

Thanks!!!

Thanks for your contribution to the Arduino community!

It's a shame you can't have a single library that works with ESP8266 and ESP32. I'd think you could just add some preprocessor conditionals:

#ifdef ESP8266
// ESP8266-specific code here
#else
// ESP32-specific code here
#endif

but I haven't looked at the source to see what the actual differences are between the two.