Pre-login handshake woes with connecting directly to SQL Azure

前端 未结 2 764
太阳男子
太阳男子 2021-01-02 10:27

We are currently experiencing a rather troublesome problem in our development environment with the following message...

A connection was successfully establi         


        
2条回答
  •  太阳男子
    2021-01-02 10:55

    What does your connection string look like? Not sure if you've tried this yet but I remember having a problem similar when using a remote SQL connection to SQL Azure and found that I had to set:

    Trusted_Connection=False;Encrypt=True
    

    and remove any Connect Timeout from the string entirely.

提交回复
热议问题