summaryrefslogtreecommitdiff
path: root/django/db/backends/oracle/client.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-5/+5
|
* Refs #32061 -- Unified DatabaseClient.runshell() in db backends.Simon Charette2020-10-291-6/+15
|
* Fixed #29501 -- Allowed dbshell to pass options to underlying tool.Adam Johnson2020-04-141-1/+2
|
* Replaced subprocess commands by run() wherever possible.Claude Paroz2019-08-231-1/+1
|
* Fixed #29534 -- Made dbshell use rlwrap on Oracle if available.Mariusz Felisiak2018-10-251-0/+5
|
* Fixed #26751 -- Made dbshell exit with the shell's error code.Étienne BERSAC2016-06-271-1/+1
|
* Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham2015-01-141-1/+1
|
* Fixed #22234 -- Replaced OS-specific code with subprocess.call() in dbshell.Mihail Milushev2014-08-041-6/+2
| | | | This fixes escaping of special characters on Windows.
* A large number of stylistic cleanups across django/db/Alex Gaynor2013-07-081-1/+1
|
* Fixed #10357 -- Fixed the "dbshell" command for Windows users.Malcolm Tredinnick2009-04-111-2/+8
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@10517 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10459 -- Refactored the internals of database connection objects so ↵Adrian Holovaty2009-03-111-3/+1
| | | | | | | | | | | | | | | | | that connections know their own settings and pass around settings as dictionaries instead of passing around the Django settings module itself. This will make it easier for multiple database support. Thanks to Alex Gaynor for the initial patch. This is backwards-compatible but will likely break third-party database backends. Specific API changes are: * BaseDatabaseWrapper.__init__() now takes a settings_dict instead of a settings module. It's called settings_dict to disambiguate, and for easy grepability. This should be a dictionary containing DATABASE_NAME, etc. * BaseDatabaseWrapper has a settings_dict attribute instead of an options attribute. BaseDatabaseWrapper.options is now BaseDatabaseWrapper['DATABASE_OPTIONS'] * BaseDatabaseWrapper._cursor() no longer takes a settings argument. * BaseDatabaseClient.__init__() now takes a connection argument (a DatabaseWrapper instance) instead of no arguments. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10026 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9972: The dbshell command was ignoring the DATABASE_HOST and ↵Ian Kelly2009-01-081-6/+3
| | | | | | DATABASE_PORT settings in Oracle. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9713 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* db: Gave each DatabaseClient class an 'executable_name' attribute (e.g., ↵Adrian Holovaty2008-09-091-2/+4
| | | | | | 'psql' or 'mysql'), so that we can use it to make a more helpful error message. Refs #8978 git-svn-id: http://code.djangoproject.com/svn/django/trunk@8989 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #5461 -- Refactored the database backend code to use classes for the ↵Russell Keith-Magee2008-08-111-8/+10
| | | | | | creation and introspection modules. Introduces a new validation module for DB-specific validation. This is a backwards incompatible change; see the wiki for details. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8296 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick2007-06-231-5/+6
| | | | | | | expected tests pass for all databases. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5519 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added half of oracle backend. (The other half is all of the special-casing ↵Adrian Holovaty2006-05-261-0/+10
in django/db/models/query.py, which I will be refactoring.) Refs #1990. Thanks, Jason Huggins and tzellman git-svn-id: http://code.djangoproject.com/svn/django/trunk@2986 bcc190cf-cafb-0310-a4f2-bffc1f526a37