Select which database this QuerySet should execute against.
(self, alias)
| 1969 | return clone |
| 1970 | |
| 1971 | def using(self, alias): |
| 1972 | """Select which database this QuerySet should execute against.""" |
| 1973 | clone = self._chain() |
| 1974 | clone._db = alias |
| 1975 | return clone |
| 1976 | |
| 1977 | def fetch_mode(self, fetch_mode): |
| 1978 | """Set the fetch mode for the QuerySet.""" |
no test coverage detected