summaryrefslogtreecommitdiff
path: root/django/db/backends/oracle
AgeCommit message (Expand)Author
2018-10-11Fixed #29836 -- Bumped required cx_Oracle to 6.0.Mariusz Felisiak
2018-09-26Fixed #29630 -- Fixed crash of sliced queries with multiple columns with the ...Mariusz Felisiak
2018-09-26Made DatabaseWrapper.oracle_version() return a full version tuple.Mariusz Felisiak
2018-09-16Fixed #29759 -- Fixed crash on Oracle when fetching a returned insert id with...Mariusz Felisiak
2018-09-10Fixed #29500 -- Fixed SQLite function crashes on null values.Srinivas Reddy Thatiparthy
2018-08-22Refs #29654 -- Replaced three dots with ellipsis character in output strings.Claude Paroz
2018-08-18Fixed #28649 -- Added ExtractIsoYear database function and iso_year lookup.Sigurd Ljødal
2018-08-03Fixed #28668 -- Allowed QuerySet.bulk_create() to ignore insert conflicts.Tom
2018-07-25Fixed #29569 -- Fixed Cast() with AutoField and BigAutoField.Mariusz Felisiak
2018-07-19Fixed #29040 -- Made test database creation messages use a consistent output ...Claude Paroz
2018-07-10Removed Oracle's fetchmany() and fetchall() wrappers.Sergey Fedoseev
2018-07-04Fixed #29541 -- Fixed Cursor.execute() crash when setinputsizes() is called w...Mariusz Felisiak
2018-06-17Fixed #29496 -- Fixed crash on Oracle when converting a non-unique field to p...Mariusz Felisiak
2018-04-28Refs #28859 -- Fixed "no data found" exception handling with cx_Oracle 6.3+.Mariusz Felisiak
2018-04-17Simplified Oracle's DatabaseOperations.cache_key_culling_sql() with LIMIT/OFF...Mariusz Felisiak
2018-03-20Fixed #29227 -- Allowed BooleanField to be null=True.Tim Graham
2018-03-13Fixed #29199 -- Fixed crash when database user password contains @ sign on Or...Mariusz Felisiak
2018-03-12Fixed #29209 -- Fixed Cast() with TextField on MySQL and Oracle.Sergey Fedoseev
2018-01-27Fixed #28650 -- Added TruncWeek database function.Sigurd Ljødal
2018-01-06Fixed #28859 -- Made Oracle backend raise DatabaseError if "no data found" ex...Mariusz Felisiak
2017-12-21Refs #28909 -- Simplifed code using unpacking generalizations.Nick Pope
2017-12-20Fixed #28932 -- Prevented Oracle from truncating trailing zeros in the fracti...Sergey Fedoseev
2017-12-20Fixed #28934 -- Prevented Cast from truncating microseconds on Oracle.Mariusz Felisiak
2017-12-16Removed unused DatabaseOperations.date_interval_sql() on Oracle.Sergey Fedoseev
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-12-08Improved performance of loading DateTimeField on Oracle and MySQL.Sergey Fedoseev
2017-12-04Fixed #28860 -- Removed unnecessary len() calls.Дилян Палаузов
2017-11-28Fixed #28853 -- Updated connection.cursor() uses to use a context manager.Jon Dufresne
2017-11-23Used bytes.hex() and bytes.fromhex() to simplify.Sergey Fedoseev
2017-10-09Fixed #28670 -- Added FETCH/OFFSET support on Oracle.Mariusz Felisiak
2017-10-05Fixed #28596 -- Fixed QuerySet.bulk_create() and cascade deletion crash on Or...Mariusz Felisiak
2017-10-04Refs #28670 -- Moved LIMIT/OFFSET SQL to DatabaseOperations.limit_offset_sql().Mariusz Felisiak
2017-09-22Refs #27098 -- Removed DatabaseIntrospection.get_indexes() per deprecation ti...Tim Graham
2017-09-18Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen
2017-09-18Changed default value of DatabaseFeatures.has_bulk_insert to True.Mads Jensen
2017-09-13Refs #27090 -- Added real database sequence introspection.Mariusz Felisiak
2017-09-07Removed unneeded __init__() methods.Sergey Fedoseev
2017-09-05Removed useless condition from Oracle's NullBooleanField's check constraint.Mariusz Felisiak
2017-08-22Fixed #28451 -- Restored pre-Django 1.11 Oracle sequence/trigger naming.Kevin Grinberg
2017-08-16Fixed #28498 -- Fixed test database creation with cx_Oracle 6.Mariusz Felisiak
2017-08-12Fixed #23546 -- Added kwargs support for CursorWrapper.callproc() on Oracle.Mariusz Felisiak
2017-08-10Refs #28459 -- Made Oracle get_db_converters() return converter for empty str...Sergey Fedoseev
2017-08-08Refs #23766 -- Added tests for CursorWrapper.callproc().Mariusz Felisiak
2017-08-07Removed unnecessary assignment in Oracle's FormatStylePlaceholderCursor._fix_...Srinivas Reddy Thatiparthy
2017-07-27Fixed #28371 -- Fixed Cast() with CharField if the max_length argument isn't ...Mariusz Felisiak
2017-07-24Fixed DatabaseFeatures.has_case_insensitive_like on MySQL and Oracle.Mariusz Felisiak
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham
2017-07-19Fixed #28411 -- Used cx_Oracle.Cursor.outputtypehandler instead of _rowfactor...Mariusz Felisiak
2017-07-14Removed unused branch in __getattr__() of Oracle and MySQL cursor wrappers.Sergey Fedoseev
2017-07-14Replaced Oracle CursorIterator with generator expression.Sergey Fedoseev