im currentl working on a project where i have a django app on Server A with its own Database "default" and this app comunicates in some instances with another databse "not-default" on Server B.
In the latest version of this Service the app retrieves "non-critical" Data from the "non-default" database via the .using("non-default")
Queryset method. But now i face the challenge to also retrieve or update critical User data from this database.
So I#m now unsure how safe a Query to this "non-default" database is when performing it with the .using()
method.
Now the Question:
Is the process of sending a Query via .using()
Querymethod safe?
And how is it protected ?