Forums

Hosting sqlite3 database through database tab.

How can I host a sqlite3 database through the database tab instead of MySQL / Postgres?

How would I connect to the database within different python files both remotely (for testing) and within my python anywhere files?

sqlite is not really a database. It is a file on your filesystem, so you cannot directly "connect" to it from anywhere. You need to load the file. Locally, just use the sqlite3 module in Python to open the database.