Opened 10 years ago

Closed 9 years ago

#22391 closed New feature (wontfix)

fallback to pymysql if MySQLdb not available

Reported by: Collin Anderson Owned by: nobody
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: cmawebsite@… Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description

Currently, pymysql is the best-supported mysql adapter on python 3. However, users need to use the following trick to get it to work with django:

   try:
        import pymysql
        pymysql.install_as_MySQLdb()
    except ImportError:
        pass

I think it would help python 3 adoption if users could use django and pymysql without additional steps.

Change History (13)

comment:2 by loic84, 10 years ago

Triage Stage: UnreviewedAccepted

I agree it'd be nice to have support for pymysql, and I actually worked on it a little while ago before giving up.

I don't think a fallback mechanism is the right approach though, I'd much prefer a minimal yet separate db backend that'd leverage most of the implementation of the default backend.

Did you manage to get the test suite to work with this patch? I remember running into a lot of issues when I tried.

comment:3 by Aymeric Augustin, 10 years ago

Related: #12500.

comment:4 by anonymous, 10 years ago

I have also a dedicated branch for this: https://github.com/claudep/django/tree/pymysql. However, I think the test suite does not entirely pass with that patch.

comment:5 by Collin Anderson, 10 years ago

It looks like testing against the latest version of pymysql, 0.6.1 (October 2013), there are some errors, but, using pymysql's master branch, there are at least fewer errors. Some recent things that have been fixed are Thing2Literal and query encoding. I also have a pull request in to fix dates before 1900. It looks like there's a ticket open for timezone support.

It seems to me we should try to fix pymysql as much as possible to try to get it compatible with MySQLdb, and then require the latest version of pymysql.

Also, I'm personally interested in also using pymysql on python2.7, so I would prefer the fallback approach myself. Though, it's clear the real benefit of this is for python 3.

comment:6 by Collin Anderson, 10 years ago

My "fix dates before 1900" change just merged. https://github.com/PyMySQL/PyMySQL/pull/232

comment:7 by Tim Graham, 10 years ago

Patch needs improvement: set

Maybe this needs discussion on the mailing list for a resolution. One question I have is how we are going to ensure that it doesn't break if we merge it to core. Do we need another MySQL build to the Jenkins matrix?

comment:9 by Collin Anderson, 10 years ago

Cc: cmawebsite@… added

comment:10 by Anssi Kääriäinen, 10 years ago

Patch needs improvement: set

If I understand correctly we at least need CI support for testing pymysql builds? Also, if In understand correctly there are still some errors with pymysql?

The best way forward is to ask for CI support for pymysql builds on django-developers mailing list.

I'll set patch needs improvement for lack of better marker that this ticket isn't ready for merge.

Version 0, edited 10 years ago by Anssi Kääriäinen (next)

comment:11 by Collin Anderson, 10 years ago

Sorry, I should link to the django-developers ghost-thread, and maybe bump it. https://groups.google.com/d/topic/django-developers/n-TI8mBcegE/discussion

comment:12 by Tim Graham, 9 years ago

Do we still need this now that we have support for mysqlclient (with no changes to Django)?

comment:13 by Collin Anderson, 9 years ago

Resolution: wontfix
Status: newclosed

I think I'm fine with closing for now, though I still think pymysql is quite popular due to it being pure python.

Note: See TracTickets for help on using tickets.
Back to Top