Django: sqlite for dev, mysql for prod? [closed]
Asked Answered
C

6

20

Quick question: is it a good idea to use sqlite while developing a Django project, and use MySQL on the production server?

Cannice answered 21/2, 2010 at 13:45 Comment(0)
O
24

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 :)

Overanxious answered 21/2, 2010 at 13:50 Comment(3)
ok glad i didn't walk down that road yet. maybe i'll take a look at postgres as i can install it in cygwin. getting mysql to work in there has proven more trouble than its worth.Cannice
why bother with cygwin, both mysql and postgres have native win32 packages? :)Hacienda
I know this is a bit late but using XAMPP with Django has been a dream -- mixes well for me. I had some trouble with MySQLdb but I googled around and found compiled libraries. Cheers, all! :-)Khalif
C
10

I second all previous answers, adding some explicit reasons:

  • MySQL issues Warning exception when you try to store string longer that field width - you won't get them in SQLite, so not only you're string will be different between dev and production, but also program behaviour
  • bugs in both backends are different - I remember that once I tried SQLite for dev and MySQL for production, but it turned out that I discovered a bug in MySQL backend which was not present in SQLite one. So I filed a ticket for it and switched to MySQL for testing :-)

And you can even try to compete with SQLite in terms of speed, take a look at my answer for other question:

Increase speed for MySQL table creation in Django?

Cottier answered 21/2, 2010 at 14:0 Comment(0)
M
8

Why would you want to do that?

  • SQLite has no stored procedure support yet.
  • SQLite is typeless. You can end up with a lot of typecast problems when running MySQL.
  • Also SQLite doesn't support RIGHT join yet.
Metaphase answered 21/2, 2010 at 13:47 Comment(1)
None of these affect any of my Django needs; although you are correct.Humanitarianism
B
7

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?

Bagasse answered 22/2, 2012 at 19:42 Comment(1)
"Database portability is a complete myth" THANK YOU!Yamashita
B
3

In short, no; unless you want to unnecessarily double development time.

Buff answered 21/2, 2010 at 13:49 Comment(0)
R
3

Just made this major mistake starting off with sqlite and when i try to deploy on production server with mysql, things didn't work as smooth as i expected. I tried dumpdata/loaddata with various switches but somehow keep getting errors thrown one after another. Do yourself a big favor and use the same db for both production and development.

Readjustment answered 2/10, 2012 at 5:26 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.