It seems that sqli3 is not working

How do I know if my sqlite3 is working? Locally I have to start the server.js but on the Vercel server I don’t know how to do it.

SQLite might not work like you expect because serverless functions work a bit differently than traditional servers. I’ve had success using SQLite as a read-only source of data. But you wouldn’t be able to write to the database live. Vercel Postgres or another third party database provider would be a better choice for serverless deployments.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.