connector-x
connector-x copied to clipboard
Does ConnectorX have support for azure managed identity
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"