An Azure service that provides a general-purpose, serverless container platform.
Hello @satish muthum,
In addition to @Bruce (SqlWork.com),and best practices consideration:
The issue with using SQLite on Azure likely stems from its limitations in cloud environments, as it's better suited for local development. To improve performance and scalability, it's recommended to migrate to Azure Database for PostgreSQL, a fully managed and secure service.
Start by exporting your SQLite data, create a PostgreSQL instance in Azure, and import the data using tools like pg_dump and pg_restore. Then, update your backend's connection settings and test the application before redeploying. This migration will ensure better reliability for your app.
Hope this helps. Do let us know if you any further queries.