Changes between Initial Version and Version 1 of Ticket #17258, comment 1
- Timestamp:
- Nov 26, 2011, 1:16:27 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17258, comment 1
initial v1 1 1 If I understand correctly, your goal is to avoid adding a `.using(...)` clause to every `QuerySet` in the view. 2 2 3 The drawback is that we introducesome state — basically, a global (thread-local) variable that defines the "current default" database connection.3 The drawback is that it introduces some state — basically, a global (thread-local) variable that defines the "current default" database connection. 4 4 5 5 Two other remarks: