How to prevent the popup of alert window ("Microsoft SQL Server Login") when SQL connection failed
Try(
batch interactive(1);
dbc = Create Database Connection("Driver={SQL Server};Server=xx.xxx.x.xx;Database=testDB;UID=test;PWD=test;");
batch interactive(0);
);
If the SQL DB connection through JSL code fails (due to the network issue), the following window appears and exposing the server address to users. I encrypt the JSL code before deploying it since I don't want the server address to be...