On Fri, Jan 6, 2023 at 7:47 AM Алексей Снегирёв <[email protected]> wrote:
> Hello I am learning web assembly and want to create and setup a database. > Could you please advise me a good tutorial about this and what base to use. > I am going to use sqLight3. I want to store strings and images in a > database. Emscripten comes with a version of sqlite that you can include via the ` -sUSE_SQLITE3` compiler (and linker) flag. If you want the database to persist between runs/reloads you will need to use some kind of persistent file system. See https://emscripten.org/docs/porting/files/file_systems_overview.html. -- > You received this message because you are subscribed to the Google Groups > "emscripten-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/emscripten-discuss/e58de6b9-fe1d-4885-99ea-5dd77bc6355en%40googlegroups.com > <https://groups.google.com/d/msgid/emscripten-discuss/e58de6b9-fe1d-4885-99ea-5dd77bc6355en%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "emscripten-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/emscripten-discuss/CAL_va29jCyS5fPco%3DnoaTQ%2B0Gch1-D%2B1GDxFTLZtnq16YX2HLw%40mail.gmail.com.
