Class BaseDatabaseOperations
Encapsulate backend-specific differences, such as the way a backend performs ordering or calculates the ID of a recently-inserted row.
Declaration
class BaseDatabaseOperations
source linkDocumentation
Methods
▶ def adapt_datefield_value(self, value) Transform a date value to an object compatible with what is expected by the backend driver for date columns.
Overrides
This method is overriden in:
▶ def adapt_datetimefield_value(self, value) Transform a datetime value to an object compatible with what is expected by the backend driver for datetime columns.
Overrides
This method is overriden in:
▶ def adapt_decimalfield_value(self, value, max_digits=None, decimal_places=None) Transform a decimal.Decimal value to an object compatible with what is expected by the backend driver for decimal (numeric) columns.
Overrides
This method is overriden in:
▶ def adapt_ipaddressfield_value(self, value) Transform a string representation of an IP address into the expected type for the backend driver.
Overrides
This method is overriden in:
▶ def adapt_timefield_value(self, value) Transform a time value to an object compatible with what is expected by the backend driver for time columns.
Overrides
This method is overriden in:
▶ def adapt_unknown_value(self, value) Transform a value to something compatible with the backend driver.
This method only depends on the type of the value. It's designed for
cases where the target type isn't known, such as .raw() SQL queries.
As a consequence it may not work perfectly in all circumstances.
▶ def autoinc_sql(self, table, column) Return any SQL needed to support auto-incrementing primary keys, or None if no SQL is necessary.
This SQL is executed when a table is created.
▶ def binary_placeholder_sql(self, value) Some backends require special syntax to insert binary content (MySQL for example uses '_binary %s').
Overrides
This method is overriden in:
▶ def bulk_batch_size(self, fields, objs) Return the maximum allowed batch size for the backend. The fields are the fields going to be inserted in the batch, the objs contains all the objects to be inserted.
Overrides
This method is overriden in:
▶ def cache_key_culling_sql(self) Return an SQL query that retrieves the first cache key greater than the n smallest.
This is used by the 'db' cache backend to determine where to start
culling.
Overrides
This method is overriden in:
This is used on specific backends to rule out known expressions
that have problematic or nonexistent implementations. If the
expression has a known problem, the backend should raise
NotSupportedError.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def combine_expression(self, connector, sub_expressions) Combine a list of subexpressions into a single expression, using
the provided connecting operator. This is required because operators
can vary between backends (e.g., Oracle with %% and &) and between
subexpression types (e.g., date expressions).
Overrides
This method is overriden in:
▷ def compiler(self, compiler_name) Return the SQLCompiler class corresponding to the given name, in the namespace corresponding to the `compiler_module` attribute on this backend.
Overrides
This method is overriden in:
▶ def date_extract_sql(self, lookup_type, field_name) Given a lookup_type of 'year', 'month', or 'day', return the SQL that extracts a value from the given date field field_name.
▶ def date_trunc_sql(self, lookup_type, field_name, tzname=None) Given a lookup_type of 'year', 'month', or 'day', return the SQL that truncates the given date or datetime field field_name to a date object with only the given specificity.
If `tzname` is provided, the given value is truncated in a specific
timezone.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def datetime_extract_sql(self, lookup_type, field_name, tzname) Given a lookup_type of 'year', 'month', 'day', 'hour', 'minute', or 'second', return the SQL that extracts a value from the given datetime field field_name.
▶ def datetime_trunc_sql(self, lookup_type, field_name, tzname) Given a lookup_type of 'year', 'month', 'day', 'hour', 'minute', or 'second', return the SQL that truncates the given datetime field field_name to a datetime object with only the given specificity.
Overrides
This method is overriden in:
▶ def deferrable_sql(self) Return the SQL to make a constraint "initially deferred" during a CREATE TABLE statement.
Overrides
This method is overriden in:
▶ def distinct_sql(self, fields, params) Return an SQL DISTINCT clause which removes duplicate rows from the result set. If any fields are given, only check the given fields for duplicates.
Overrides
This method is overriden in:
▷ def end_transaction_sql(self, success=True) Return the SQL statement required to end a transaction.
▷ def execute_sql_flush(self, sql_list) Execute a list of SQL statements to flush the database.
Overrides
This method is overriden in:
▶ def fetch_returned_insert_columns(self, cursor, returning_params) Given a cursor object that has just performed an INSERT...RETURNING statement into a table, return the newly created data.
Overrides
This method is overriden in:
▶ def field_cast_sql(self, db_type, internal_type) Given a column type (e.g. 'BLOB', 'VARCHAR') and an internal type
(e.g. 'GenericIPAddressField'), return the SQL to cast it before using
it in a WHERE statement. The resulting string should contain a '%s'
placeholder for the column being searched against.
Overrides
This method is overriden in:
▷ def for_update_sql(self, nowait=False, skip_locked=False, of=(), no_key=False) Return the FOR UPDATE SQL clause to lock rows for an update operation.
▶ def force_no_ordering(self) Return a list used in the "ORDER BY" clause to force no ordering at all. Return an empty list to include nothing in the ordering.
Overrides
This method is overriden in:
▶ def get_db_converters(self, expression) Return a list of functions needed to convert field data.
Some field types on some backends do not provide data in the correct
format, this is the hook for converter functions.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def integer_field_range(self, internal_type) Given an integer field internal type (e.g. 'PositiveIntegerField'), return a tuple of the (min_value, max_value) form representing the range of the column type bound to the field.
Overrides
This method is overriden in:
▶ def last_executed_query(self, cursor, sql, params) Return a string of the query last executed by the given cursor, with placeholders replaced with actual values.
`sql` is the raw query containing placeholders and `params` is the
sequence of parameters. These are used by default, but this method
exists for database backends to provide a better implementation
according to their own quoting schemes.
Overrides
This method is overriden in:
▶ def last_insert_id(self, cursor, table_name, pk_name) Given a cursor object that has just performed an INSERT statement into a table that has an auto-incrementing ID, return the newly created ID.
`pk_name` is the name of the primary-key column.
Overrides
This method is overriden in:
▶ def limit_offset_sql(self, low_mark, high_mark) Return LIMIT/OFFSET SQL clause.
Overrides
This method is overriden in:
▶ def lookup_cast(self, lookup_type, internal_type=None) Return the string to use in a query when performing lookups ("contains", "like", etc.). It should contain a '%s' placeholder for the column being searched against.
Overrides
This method is overriden in:
▶ def max_in_list_size(self) Return the maximum number of items that can be passed in a single 'IN' list condition, or None if the backend does not impose a limit.
Overrides
This method is overriden in:
▶ def max_name_length(self) Return the maximum length of table and column names, or None if there is no limit.
Overrides
This method is overriden in:
▶ def modify_insert_params(self, placeholder, params) Allow modification of insert parameters. Needed for Oracle Spatial backend due to #10888.
Overrides
This method is overriden in:
▶ def no_limit_value(self) Return the value to use for the LIMIT when we are wanting "LIMIT infinity". Return None if the limit clause can be omitted in this case.
Overrides
This method is overriden in:
▶ def pk_default_value(self) Return the value to use during an INSERT statement to specify that the field should use its default value.
Overrides
This method is overriden in:
▶ def prepare_sql_script(self, sql) Take an SQL script that may contain multiple lines and return a list of statements to feed to successive cursor.execute() calls.
Since few databases are able to process raw SQL scripts in a single
cursor.execute() call and PEP 249 doesn't talk about this use case,
the default implementation is conservative.
Overrides
This method is overriden in:
▶ def process_clob(self, value) Return the value of a CLOB column, for backends that return a locator object that requires additional processing.
Overrides
This method is overriden in:
▶ def quote_name(self, name) Return a quoted version of the given table, index, or column name. Do not quote the given name if it's already been quoted.
Overrides
This method is overriden in:
▶ def regex_lookup(self, lookup_type) Return the string to use in a query when performing regular expression lookups (using "regex" or "iregex"). It should contain a '%s' placeholder for the column being searched against.
If the feature is not supported (or part of it is not supported), raise
NotImplementedError.
Overrides
This method is overriden in:
▶ def return_insert_columns(self, fields) For backends that support returning columns as part of an insert query, return the SQL and params to append to the INSERT query. The returned fragment should contain a format string to hold the appropriate column.
Overrides
This method is overriden in:
▷ def savepoint_create_sql(self, sid) Return the SQL for starting a new savepoint. Only required if the "uses_savepoints" feature is True. The "sid" parameter is a string for the savepoint id.
▶ def sequence_reset_by_name_sql(self, style, sequences) Return a list of the SQL statements required to reset sequences passed in `sequences`.
The `style` argument is a Style object as returned by either
color_style() or no_style() in django.core.management.color.
Overrides
This method is overriden in:
▶ def sequence_reset_sql(self, style, model_list) Return a list of the SQL statements required to reset sequences for the given models.
The `style` argument is a Style object as returned by either
color_style() or no_style() in django.core.management.color.
Overrides
This method is overriden in:
▶ def set_time_zone_sql(self) Return the SQL that will set the connection's time zone.
Return '' if the backend doesn't support time zones.
Overrides
This method is overriden in:
▶ def sql_flush(self, style, tables, *, reset_sequences=False, allow_cascade=False) Return a list of SQL statements required to remove all data from the given database tables (without actually removing the tables themselves).
The `style` argument is a Style object as returned by either
color_style() or no_style() in django.core.management.color.
If `reset_sequences` is True, the list includes SQL statements required
to reset the sequences.
The `allow_cascade` argument determines whether truncation may cascade
to tables with foreign keys pointing the tables being truncated.
PostgreSQL requires a cascade even if these tables are empty.
Overrides
This method is overriden in:
Overrides
This method is overriden in:
Overrides
This method is overriden in:
▶ def tablespace_sql(self, tablespace, inline=False) Return the SQL that will be used in a query to define the tablespace.
Return '' if the backend doesn't support tablespaces.
If `inline` is True, append the SQL to a row; otherwise append it to
the entire CREATE TABLE or CREATE INDEX statement.
Overrides
This method is overriden in:
▶ def time_extract_sql(self, lookup_type, field_name) Given a lookup_type of 'hour', 'minute', or 'second', return the SQL that extracts a value from the given time field field_name.
▶ def time_trunc_sql(self, lookup_type, field_name, tzname=None) Given a lookup_type of 'hour', 'minute' or 'second', return the SQL that truncates the given time or datetime field field_name to a time object with only the given specificity.
If `tzname` is provided, the given value is truncated in a specific
timezone.
Overrides
This method is overriden in:
▶ def unification_cast_sql(self, output_field) Given a field instance, return the SQL that casts the result of a union to that type. The resulting string should contain a '%s' placeholder for the expression being cast.
Overrides
This method is overriden in:
▶ def validate_autopk_value(self, value) Certain backends do not accept some values for "serial" fields (for example zero in MySQL). Raise a ValueError if the value is invalid, otherwise return the validated value.
Overrides
This method is overriden in:
▶ def year_lookup_bounds_for_date_field(self, value) Return a two-elements list with the lower and upper bound to be used with a BETWEEN operator to query a DateField value using a year lookup.
`value` is an int, containing the looked-up year.
▶ def year_lookup_bounds_for_datetime_field(self, value) Return a two-elements list with the lower and upper bound to be used with a BETWEEN operator to query a DateTimeField value using a year lookup.
`value` is an int, containing the looked-up year.
Subclasses
Reexports