Quick question: is it a good idea to use sqlite while developing a Django project, and use MySQL on the production server?
feedback
|
|
I'd highly recommend using the same database backend in production as in development, and all stages in between. Django will abstract the database stuff, but having different environments will leave you open to horrible internationalisation, configuration issues, and nasty tiny inconsistencies that won't even show up until you push it live. Personally, I'd stick to mysql, but I never got on with postgres :) | |||||||||
feedback
|
|
Why would you want to do that?
| |||
|
feedback
|
|
I second all previous answers, adding some explicit reasons:
And you can even try to compete with SQLite in terms of speed, take a look at my answer for other question: | |||
|
feedback
|
|
In short, no; unless you want to unnecessarily double development time. | |||
|
feedback
|
|
Use the same database in all environments. As much as the ORM tries to abstract the differences between databases, there will always be certain features that behave differently based on the database. Database portability is a complete myth. Plus, it seems pretty insane to test and develop against code paths that you will never use in production, doesn't it? | |||
|
feedback
|