A typical Azure SQL Database connection string is as follows:
Server=[server];
Database=[database];
User ID=[user];
Password=[password];
Trusted_Connection=False;
Encrypt=True;
Connection Timeout=30;
What are the Trusted_Connection
and Encrypt
properties for?
If I exclude them, then I cannot connect to the database from my Azure VM service.