I'm using this command and connection string in Google Apps Script to connect to a MSSQL server: `Jdbc.getConnection('jdbc:sqlserver://xxxx.mine.nu:5500;databaseName=sbsql;user=curruser;password=currpass');` But I'm getting the error "Exception: Failed to establish a database connection. Check connection string, username and password." My server is at `xxxx.mine.nu` at port 5500. Username is curruser and password is currpass. What am I doing wrong?
function getDBConnection() { var conn = Jdbc.getConnection('jdbc:sqlserver://xxxx.mine.nu:5500;databaseName=sbsql;user=curruser;password=currpass'); return conn; }