Hi @Donald Symmons ,
Please use SSMS to connect to your SQL server instance. Then check whether the login quirverT is existed under SQL server security login folder. Your SQL server instance has been enabled SQL server authentication. Right click SQL server instance, click security properties. You need to restart your SQL server service to make this change effect. And this login has permission to connect to SQL server instance.
> SqlConnection ="Data Source=N1NWPLSK12SQL-v02.shr.prod.ams1.secureserver.net;Initial Catalog=Quirver_DB;User ID=quirverT;Password=***")
You have some mistakes in your connection string, we use IP address, port number or instance name for data source. Please correct it, refer to this blog SQL Server connection strings. Such as below;
Server=myServerName\myInstanceName;Database=myDataBase;User Id=myUsername;Password=myPassword;
Data Source=myServerAddress;Initial Catalog=myDataBase;User ID=myUsername;Password=myPassword;
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".