connector-x icon indicating copy to clipboard operation
connector-x copied to clipboard

Does ConnectorX have support for azure managed identity

Open MuhammadPathan opened this issue 1 year ago • 3 comments

I am connecting into SQL Server using SQL credentials however looking to change to using managed identity. is there support for this? is there an example?

username = os.environ["UID"] password = os.environ["PWD"] host = f"host" port = "1433" db = f"db" conn = f"mssql://{username}:{password}@{host}:{port}/{db}?encrypt=true"

MuhammadPathan avatar May 28 '24 12:05 MuhammadPathan