sql server - connect to mssql with password that containts @ -


i using nodes mssql module in order connect mssql database. password contains @ , pattern connection

mssql://username:password@localhost/database 

it throws connection error. assume because sees @ content after it takes localhost , on.

is there way how connect there password contains @?

thanks

from msdn:

certain symbols must enclosed double quotation marks (") or square brackets ([ ]).

use these delimiters in transact-sql statements when sql server login, user, role, or password has following characteristics:

1.contains or starts space character.
2. starts $ or @ character.


Comments