summaryrefslogtreecommitdiff
path: root/MySQLdb
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #32 from methane/autocommitAndy Dustman2013-11-211-15/+2
|\ | | | | More precise get_autocommit based on server_status.
| * Remove unused variable.INADA Naoki2013-10-021-2/+0
| |
| * More precise get_autocommit based on server_status.INADA Naoki2013-10-021-13/+2
| |
* | Merge pull request #34 from tyzhnenko/test-and-fix-issue-33Andy Dustman2013-11-211-1/+1
|\ \ | | | | | | Fix cut off SQL query when its contained `))`
| * | Fix cut off SQL query when its contained `))`, edit insert_valuesDima Tyzhnenko2013-10-071-1/+1
| |/ | | | | | | regexp. Fixes issue #33.
* | Merge pull request #36 from Multiposting/masterAndy Dustman2013-11-212-4/+17
|\ \ | | | | | | Fix the conversion of list or tuple args to SQL.
| * | Also fix executemany().Guillaume Bandet2013-11-051-1/+7
| | |
| * | Syntax fix for python 2.5 support.Guillaume Bandet2013-11-051-1/+2
| | |
| * | Fix the conversion of list or tuple args to a SQL.Guillaume Bandet2013-11-042-3/+9
| |/ | | | | | | | | | | When there is one element on the list, the generated SQL was (1,) (python notation of a single element tuple, which is not valid in SQL.
* | microsecond-bug-fixJinuk2013-11-081-3/+6
| | | | | | | | | | | | | | When the MySQL Datetime Fraction is less than 6, microseconds set incorrectly. For example, you set the field, Datetime(3). Then this library read the time `2013-11-07 10:27:35.705` as `2013-11-08 10:27:35.000705`.
* | microsecond-bug-fix for datetime.datetimejinuk84.kim2013-11-081-1/+5
|/
* Merge pull request #12 from KLab/autocommit_onAndy Dustman2013-08-181-2/+30
|\ | | | | Support keyword argument to initially autocommit=on
| * 'BEGIN' on __enter__ if autocommit is enabled.INADA Naoki2013-05-221-3/+24
| |
| * Fix typo.INADA Naoki2013-05-211-1/+1
| |
| * autocommit=None means using server default.INADA Naoki2013-05-211-2/+6
| |
| * Support `autocommit=True` for constructor argument.INADA Naoki2013-01-051-1/+4
| |
* | Fix problem with return None if Datetime field contained microsecond (Issue #24)Dima Tyzhnenko2013-07-151-6/+14
|/
* remove unused lines.INADA Naoki2013-01-051-21/+20
|
* Version bumpMySQLdb-1.2.4farcepest2013-01-011-2/+2
|
* Fix some broken types module references.pypy-fixesfarcepest2012-11-021-2/+2
|
* PyPy fixes, and probably some reference issues for CPython too.farcepest2012-10-171-1/+6
| | | | Derived from a patch at https://bitbucket.org/pypy/compatibility/wiki/edit/mysql-python
* Version bump.MySQLdb-1.2.4b5farcepest2012-10-111-2/+2
|
* Merge remote-tracking branch 'remotes/evax/utf8mb4' into MySQLdb-1.2farcepest2012-10-081-7/+5
|\
| * Use db.unicode_literal.charset in cursors.pyEvax Software2012-10-081-10/+5
| |
| * Map utf8mb4 to utf8 in pythonEvax Software2012-10-081-2/+5
| |
* | Prep for 1.2.4b4 releaseMySQLdb-1.2.4b4farcepest2012-10-081-2/+2
|/
* Workaround for recommended MySQL 5.5 utf8mb4 character set, which is not ↵farcepest2012-10-051-2/+6
| | | | recognized by Python yet.
* Allow pip install from gitEvax Software2012-10-0440-7575/+0
| | | | Merged with modifications from https://github.com/evax/MySQLdb1/commit/a8152690101733904b16a32ff8467220ca07242c
* Let's not forget history...farcepest2012-10-031-152/+161
|
* Version 1.2.4b3MySQLdb-1.2.4b3farcepest2012-10-032-2/+6
|
* Patch 4/4: Fix TEXT vs. BLOB conversion.André Malo2012-10-031-2/+6
| | | | | | This patch assumes an applied patch 3 (https://sourceforge.net/p/mysql-python/patches/79/). Looks a bit like a hack, but the infrastructure doesn't seem to allow anything else. And it works here very well. I'm not sure, how it works with very old mysql versions (<= 4.0). https://sourceforge.net/p/mysql-python/patches/80/
* Patch 3/4: _mysql.c reference counting and exception issuesAndré Malo2012-10-031-11/+33
| | | | | | This patch fixes a reference leak and improves the error handling in the converter mapping code. Rather accidentially it also drops the cleanup: label and the gotos ;) https://sourceforge.net/p/mysql-python/patches/79/
* Patch 2/4: executemany-regex improvement. It should match better and faster ↵André Malo2012-10-031-6/+25
| | | | | | now. It also may be more readable. https://sourceforge.net/p/mysql-python/patches/78/
* Patch 1/4: Minor exception handling improvements (don't swallow program exits)André Malo2012-10-032-4/+18
| | | | https://sourceforge.net/p/mysql-python/patches/77/
* Somehow I missed this connection setupfarcepest2012-10-021-1/+2
|
* Giving Travis it's own database with utf8 charset in hopes this will fix the ↵farcepest2012-10-021-1/+1
| | | | callproc test (which works everywhere else)
* Add Travis-specific configuration filefarcepest2012-10-021-0/+10
|
* Merge branch 'master' into MySQLdb-1.2farcepest2012-10-025-588/+620
|\ | | | | | | | | | | Conflicts: MySQLdb/tests/test_MySQLdb_capabilities.py MySQLdb/tests/test_MySQLdb_dbapi20.py
| * Unify test connection configurationfarcepest2012-10-025-588/+620
| |
| * History updates for 1.2.4b2MySQLdb-1.2.4b2farcepest2012-09-272-6/+40
| |
| * Revert raise exc as value statements to raise exc, value since it breaks ↵farcepest2012-09-271-2/+2
| | | | | | | | Python < 2.6.
| * Fix MySQLdb1-1 Exception format incompatible with previous versionsfarcepest2012-09-262-3/+3
| | | | | | | | Unfortunately, when I broke this, I broke the test at the same time. That should have been a red flag.
| * Windows is HELLMySQLdb-1.2.4b1Andy Dustman2012-09-262-61/+61
| |
| * Revert "Hopefully this is just a very minor spacing cleanup."Andy Dustman2012-09-2633-8878/+8878
| | | | | | | | | | | | | | | | This reverts commit cdc221a8078382f3a0d97b8b43b155a4f6246297. Conflicts: MySQLdb/MANIFEST.in MySQLdb/metadata.cfg
| * License file, cleanup MANIFEST.in, and bump version to 1.2.4b1Andy Dustman2012-09-253-5/+342
| |
| * Hopefully this is just a very minor spacing cleanup.Andy Dustman2012-09-2538-8961/+8952
| |
* | Test connection tweaks for TravisAndy Dustman2012-10-013-3/+3
| |
* | History updates for 1.2.4b2farcepest2012-09-272-6/+40
| |
* | Revert raise exc as value statements to raise exc, value since it breaks ↵farcepest2012-09-271-2/+2
| | | | | | | | Python < 2.6.
* | Fix MySQLdb1-1 Exception format incompatible with previous versionsfarcepest2012-09-272-3/+3
| | | | | | | | Unfortunately, when I broke this, I broke the test at the same time. That should have been a red flag.