DEV Community

Discussion on: A stable alternative to SQLite for offline desktop app?

Collapse
 
rhymes profile image
rhymes

What if you ship SQLite precompiled with the tool you distribute?

Thread Thread
 
alexleung profile image
Alex Leung

You you compile SQLite you have to compile it for a specific platform. I wouldn't be able to anticipate all the possible client platforms.

Thread Thread
 
rhymes profile image
rhymes

But SQLite is already available for many platforms and if a client asks you for a new platform you can compile it for that too: sqlite.org/download.html

Would that work?