Where to store sqlite db

Where is the appropriate place to store a sqlite database?

I assume you mean to store an application database, not the SQLite repository. You need to store it in a folder that has r/w access. There is no such thing as an ‘appropriate’ place. But it needs to be stored in the same root as your application. You could create a special folder for this, like \db.

And that’s exactly what I did. Thank you.