summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Expand)Author
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-20Added a db_type() method to the database Field class. This is a hook for calc...Adrian Holovaty
2007-07-13Refs #2591 -- Removed int conversion and try/except since the value in the si...Gary Wilson Jr
2007-07-13Fixed #2591 -- Fixed a problem with inspectdb with psycopg2 (only). Patch fromMalcolm Tredinnick
2007-07-06Fixed #4770 -- Fixed some Unicode conversion problems in the mysql_old backendMalcolm Tredinnick
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-28Fixed #4689 -- Added some missing methods to the dummy backend. Thanks for th...Russell Keith-Magee
2007-06-27Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.Jacob Kaplan-Moss
2007-06-25Fixed #4678 -- Fixed table name matching during syncdb for pyscopg2 backendMalcolm Tredinnick
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-10Fixed #4432 -- Fixed PostgreSQL sequence resetting in the case when a table hasMalcolm Tredinnick
2007-06-10Fixed #4518 -- Added handling of empty strings in typecast_decimal() forMalcolm Tredinnick
2007-06-01rollback on dummy database now has no effect (previously raised an error). Th...Simon Willison
2007-05-22Fixed #4357 -- Removed a type conversion that was only introduced inMalcolm Tredinnick
2007-05-21Fixed #2365, #3324 -- Renamed FloatField to DecimalField and changed the codeMalcolm Tredinnick
2007-05-12Fixed #4231 -- Added quoting for sequence names on sequence reset for Postgre...Russell Keith-Magee
2007-04-26Fixed #4040 -- Changed uses of has_key() to "in". Slight performanceMalcolm Tredinnick
2007-04-25Fixed #3450 -- Exposed IntegrityError in a backend-neutral fashion. This is aMalcolm Tredinnick
2007-04-20Fixed #4048 -- When introspecting a MySQL database, map CHAR(n) fields toMalcolm Tredinnick
2007-04-17Fixed #4057 -- Fixed problem with quoting of sequence names on Postgres backe...Russell Keith-Magee
2007-04-06Fixed the ADO backend to match the required interface and normalized naming o...Russell Keith-Magee
2007-04-06Fixed #3790 -- Fixed a problem with sequence resetting during fixture loads w...Russell Keith-Magee
2007-03-21Fixed a mistaken import from the mysql backend that had snuck through.Malcolm Tredinnick
2007-03-21Added a mysql_old backend that matches the mysql backend prior to [4724]. ThisMalcolm Tredinnick
2007-03-20Fixed #3754 -- Re-introduced utf-8 as default encoding for interaction withMalcolm Tredinnick
2007-03-18Fixed #3747 -- Added a stricter MySQLdb version check so that (1, 2, 1,Malcolm Tredinnick
2007-03-14Fixed #2635 -- Added improved MySQL backend support from Andy Dustman. AlsoMalcolm Tredinnick
2007-03-09Fixed #3024 -- Fixed database commit() and rollback() behaviour so it worksMalcolm Tredinnick
2007-03-02Fixed #3627 -- Made [4659] compatible with Python 2.3. Thanks, Gary Wilson.Malcolm Tredinnick
2007-03-01Changed the postgres version getting code to use cursor.fetchone() instead of...Jacob Kaplan-Moss
2007-03-01Fixes #2333 -- Added test fixtures framework.Russell Keith-Magee
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss
2007-02-25Fixed #3459: Django no longer runs SET TIME ZONE for every query when using P...Jacob Kaplan-Moss
2007-01-08Fixed #1477: URLFields now accept a maxlength parameter. Thanks, Matt Croydon.Jacob Kaplan-Moss
2006-12-30Fixed #3151 -- Improved MySQL backend not to send 'SET NAMES utf8' before eve...Adrian Holovaty
2006-12-29Fixed #3205 -- Fixed bug in custom postgresql executemany wrapper. Thanks for...Adrian Holovaty
2006-12-27Fixed #3115 -- Changed postgresql backend to convert all Unicode strings to b...Adrian Holovaty
2006-12-15Improved error message in postgresql backendAdrian Holovaty
2006-11-07Fixed #2866: Added DATABASE_OPTIONS setting which gets passed as extra kwargs...Jacob Kaplan-Moss
2006-11-07Fixed #2913: CursorDebugWrapper no longer double-tuple-izes parameters. Than...Jacob Kaplan-Moss
2006-09-27Fixed omission in [3872].Malcolm Tredinnick
2006-09-27Reintroduced the changes from [3855] with more flexible handling of versionMalcolm Tredinnick
2006-09-26Removed one more legacy bit from [3855]. Refs #2827.Adrian Holovaty
2006-09-26Fixed #2827 -- Reverted [3855]Adrian Holovaty
2006-09-26Fixed #2188 -- Raise an error when using long CharFields in combination withMalcolm Tredinnick
2006-09-25Fixed #2772 -- Made SQLite support work correctly with Python 2.5 standardMalcolm Tredinnick
2006-09-22Fixed #2662 -- Changed dictfetchmany and dictfetchall to return iterators,Malcolm Tredinnick
2006-09-11Fixed #2700 -- Improved introspection for MySQL. Thanks for the patch, serbau...Adrian Holovaty
2006-09-11Fixed #2699 -- Added quote_name() call to MySQL introspection.py. Thanks for ...Adrian Holovaty
2006-09-05Made psycopg2 backend actually support dictfetch* methods. Jacob Kaplan-Moss