I have a project where I connect to multiple read-only MS SQL2014 servers.
I'm trying to ensure my connection string is correct however I don't know of a method to get the connection string used to connect to the server.
django.db import connections does not have the connection string property, only the dictionary that I set in settings.py.
Anyone know of a method to get the connectionstring used in the connection?
I have a project where I connect to multiple read-only MS SQL2014 servers. I'm trying to ensure my connection string is correct however I don't know of a method to get the connection string used to connect to the server.
django.db import connections
does not have the connection string property, only the dictionary that I set insettings.py
.Anyone know of a method to get the connectionstring used in the connection?