summaryrefslogtreecommitdiff
path: root/django/core/db
AgeCommit message (Expand)Author
2007-01-300.90-bugfixes: fix for backport in [4418]stable/0.90.xJames Bennett
2007-01-240.90-bugfixes: Backporting [4244] for those using legacy Django with psycopg1James Bennett
2005-11-15Fixed bug in postgresql backend that prevented the user of passwords with spa...Jacob Kaplan-Moss
2005-11-14Fixed #121 -- Django now quotes all names in SQL queries. Also added unit tes...Adrian Holovaty
2005-11-13Moved db.quote_name from a model-level function to a method of DatabaseWrappe...Adrian Holovaty
2005-11-11Implemented quote_name() for ado_mssql DB backend. Thanks, Jakub Labath and E...Adrian Holovaty
2005-11-01Added quote_name hook for each database backend. Refs #121. Thanks, Robin Mun...Adrian Holovaty
2005-11-01Updated out-of-date docstring in django/core/db/__init__.pyAdrian Holovaty
2005-11-01Fixed #507 -- Changed MySQL backend so that it uses 'LIKE BINARY' for case-se...Adrian Holovaty
2005-10-18Added DATA_TYPES_REVERSE to ado_mssql backendAdrian Holovaty
2005-10-18Changed get_random_function_sql for ado_mssql backend to use RAND(), which is...Adrian Holovaty
2005-10-18Added get_table_list() to ado_mssql backendAdrian Holovaty
2005-10-15Fixed #225 -- Added first stab at MS SQL Server support (via ADO). Thanks to ...Adrian Holovaty
2005-10-14Fixed #618 -- Added DATABASE_PORT setting. Thanks, EsajAdrian Holovaty
2005-10-12Fixed #589 -- Added FilePathField. It's available as an ORM field and as a st...Adrian Holovaty
2005-10-08Fixed #473 -- Added a MysqlDebugWrapper to use for MySQL with DEBUG=True. It ...Adrian Holovaty
2005-09-28Fixed #553 -- Added django.core.meta.fields.Field.get_internal_type() hook, f...Adrian Holovaty
2005-09-26Fixed #489 -- Changed MySQL backend to use longtext for XMLFieldAdrian Holovaty
2005-09-24Fixed #489 -- Changed MySQL backend to use longtext instead of text for TextF...Adrian Holovaty
2005-09-19Fixed #491 -- Non-user connections are now supported for PostgreSQL. Thanks, ...Adrian Holovaty
2005-09-02Fixed #404 -- Fixed random ordering in MySQL by abstracting random function i...Adrian Holovaty
2005-08-19Fixed #350 -- 'offset' DB API parameter now works in MySQL 3. Tests from [540...Adrian Holovaty
2005-08-15Fixed #321 -- Undid [494], which assumed the installed version of MySQLdb had...Adrian Holovaty
2005-08-14Fixed #316 -- Changed MySQL backend to disregard warningsAdrian Holovaty
2005-08-11Changed timestamp and time typecasting to preserve microseconds. Added unit t...Adrian Holovaty
2005-08-10Changed [459] to use a better interface for the exceptionAdrian Holovaty
2005-08-10Changed MySQL backend so that it fails silently if rollback() isn't supported...Adrian Holovaty
2005-08-02Improved 'django-admin inspectdb' so that it detects ForeignKey relationships...Adrian Holovaty
2005-08-02Added first stab at 'django-admin.py inspectdb', which takes a database name ...Adrian Holovaty
2005-08-01Fixed #227 -- the sqlite backend now correctly typecasts unicode objects to b...Jacob Kaplan-Moss
2005-07-29Fixed #228 -- Better handling of timezones. Thanks, rmunnAdrian Holovaty
2005-07-29Fixed #219 and #188 -- Database timestamp typecast no longer assumes '-' deli...Adrian Holovaty
2005-07-25Fixed #197 -- thanks for finding that, mmarshallJacob Kaplan-Moss
2005-07-22Added sqlite3 database backend -- somewhat tested, but probably not 100% perf...Jacob Kaplan-Moss
2005-07-21Refactor dictfetch* methods from mysql backend out into a seperate module; th...Jacob Kaplan-Moss
2005-07-21Cleaned up [269] a tiny bitAdrian Holovaty
2005-07-21fixes #133 -- thanks JoeriJacob Kaplan-Moss
2005-07-19Improved error message when DATABASE_ENGINE is invalid. It now displays a lis...Adrian Holovaty
2005-07-19Quick bugfix to [207] -- MySQL doesn't have ILIKEAdrian Holovaty
2005-07-19Added support for istartswith and iendswith in database APIAdrian Holovaty
2005-07-19Fixed #69 -- Implemented dictfetchone(), dictfetchmany() and dictfetchall() f...Adrian Holovaty
2005-07-18Fixed #56 -- MySQL id columns are now UNSIGNED. Thanks, Manuzhai!Adrian Holovaty
2005-07-17Factored out database-specific date_trunc behavior into dbmod.get_date_trunc_...Adrian Holovaty
2005-07-17Changed core.db to give a friendlier error message if the DATABASE_ENGINE set...Adrian Holovaty
2005-07-17Factored out database-specific date_extract behavior into dbmod.get_date_extr...Adrian Holovaty
2005-07-17Fixed #42 -- OneToOneField now works with SQL generationAdrian Holovaty
2005-07-16Added helpful error message if DATABASE_NAME or DATABASE_USER is blank for po...Adrian Holovaty
2005-07-16Fixed #39 -- Thanks for the research, deelan!Adrian Holovaty
2005-07-16Fixed inconsistent capitalization in [109]Adrian Holovaty
2005-07-16Changed postgresql DB backend so that it gives a helpful error message if peo...Adrian Holovaty