Ali Torabi
Ali Torabi
``` void test_sqlite(const char *sql) { sqlite3 *db1; int rc; esp_vfs_spiffs_conf_t conf = { .base_path = "/storage", .partition_label = "storage", .max_files = 15, .format_if_mount_failed = true}; esp_err_t ret = esp_vfs_spiffs_register(&conf);...
Also another issue is, if I mount the spiffs in another function, it would say IO/Write error, that's also strange. I create table 'bugg table' before each sql statement, it's...
I think using the sql queries inside http methods causing the problem...
@SpazCode153 I am quite tired for today, but I got good results so far - unfortunately, the mystery for me still remains, why database calls inside the http call backs...
@siara-cc Hello Arun; Sorry for late reply, I just managed to get CRU-(D?) working on the ESP32 with HTTP server support, and, this library. Seems to be fine. I have...
You cannot use callback system. You need to go the prepare [sqlite3_prepare_v2](https://stackoverflow.com/questions/27383724/sqlite3-prepare-v2-sqlite3-exec) instead for long term and reliable usage.
I have the same issue. {{SSR}} is not replaced on server render, seems server render is not working.