Has anyone ever launched cloud-based apps / websites that use a local SQLite DB as the primary data source?
Are there any warnings about this?
My environment:
- C# 3.0 app
- currently uses a sql server 2008 db
- current db size 30 mb-
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you expect a lot of traffic, you really shouldn’t. SQLite is meant to be used as a lightweight SQL database, and is not meant for highly concurrent access (since it locks the whole database file) which could be an important requirement in this case.
Read:
Appropriate uses for SQLite