Using Django with a Drizzle Database?

Does anyone have any experience using Django with a Drizzle database?

The first version of GA for Drizzle has just been released, and from my understanding this should be a good combination for Django. Being a stripped-down version of MySQL, it still provides all the necessary functions and, hopefully, better performance.

+3
source share
2 answers

To use the MySQL Django firewall, you need to install the MySQLdb driver . When I install MySQLdb on the machine on which the Drizzle (but not in MySQL), I get this error: EnvironmentError: mysql_config not found. I believe this is the step at which MySQLdb looks for compiler options to create the client . We probably need the Django MySQL backend fork, which uses the Python shell around libdrizzle.

+2
source

MySQLdb plays great with Rain. We use it to work with SQLAlchemy. I can’t talk about the problems you encountered, but I also have both MySQL and Drizzle on my machines. Everything is built for me well, but I would be happy to help solve any problems that anyone else has

+1
source

All Articles