up vote 2 down vote favorite
share [g+] share [fb]

I installed jython, django on my windows system. I successfully created a project mysite. Now after updating settings in settings.py. i ran 'manage.py' and got the error- Import error - "no module named mysqldb". now, i downloaded mysqldb (which is for python, but i thought it will work for jython also) and i tried to install it. but now i am getting the following error- import error - "no module named '_winreg'".

what does it mean? how to get around this problem? i am a completely new bee to jython and django, please help.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

MySQLdb is the CPython MySQL library, so it won't work with Jython.

You'll want to use zxJDBC to connect to MySQL from Jython: http://jython.org/Project/userguide.html#database-connectivity-in-jython

You'll need to add the MySQL jdbc jar to your classpath

link|improve this answer
thanx.. let me try it!! – Nitin Garg Feb 17 '10 at 16:00
feedback

You'll need to install django-jython in order to get Django working on Jython. Note that it will use zxJDBC and not MySQLdb.

link|improve this answer
django-jython is neccessary? i thought it was an option!! so now i need to install django-jython, jdbc and zxJDBC!! – Nitin Garg Feb 17 '10 at 15:59
JDBC is a spec, not a piece of software. zxJDBC comes with Jython. django-python is required to make Django use zxJDBC instead of the CPython DB-API adapters. – Ignacio Vazquez-Abrams Feb 17 '10 at 17:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.