esp32-idf-sqlite3
esp32-idf-sqlite3 copied to clipboard
Sqlite library for esp-idf (esp32) framework
Hello , I am using your SQLite database in my ESP32 project and would like to thank you for your help. However, I ran into some problems using it and...
If I try to use Sqlite3 in freeRTOS, it crashes with no Guru Meditation error (TG1WDT_SYS_RESET). I've changed the memory allocating functions inside the SQLite to heap_caps_allocations which uses only...
Fix an issue where a compiler warning (-Wimplicit-function-declaration) causes build breaks. esp_random is used without a declaration, which causes the aforementioned warning We have a -Werror build and we are...
Is this library also working with esp-idf v5.0.1 or only with v4.1.1, because I get several errors.
I am calling `ATTACH DATABASE '/emmc/foo.db' AS foo;` and `ATTACH DATABASE '/emmc/bar.db' AS bar;` and then `SELECT uid FROM main.Tokens UNION SELECT uid from foo.Tokens UNION SELECT uid from bar.Tokens;`...
I want to make multiple tables in esp32 DB it is possible with this library?
@siara-cc I am encountering an I/O disk error when executing queries with a GROUP BY clause, especially when there is a large amount of data involved. After reviewing the issue...
Hi, I am using ESP32 with 4mb flash without spiram but i am getting following error while opening a database ` Core 0 register dump: PC : 0x00000000 PS :...
This MR upgrades SQLite to 3.46.0. I've done some initial tests (using the examples) and all works pretty fine, but of course it needs a bit more testing and maybe...
macros such as ESP_ERROR_CHECK also use NDEBUG. The NDEBUG flag is being defined in situations where it is not defined an neither is SQLITE_DEBUG, leading to some confusion as to...