vote up 0 vote down star

I am trying to open a SQL data connection using powershell script and my password contains a $ sign:

$cn = new-object system.data.SqlClient.SqlConnection("Data Source=DBNAME;Initial Catalog=Catagory;User ID=User;Password=pass$word;")

When I try to open a connection it says Login failed.

flag

1 Answer

vote up 7 vote down check

Did you try escapting it by using - backtick (`) as an escape character for the dollar sign ($).

Also, did you try enclosing the statement in single-quotes instead of the double-quotes you are using now?

link|flag
Works perfectly with single quotes ! Thanks ! – Murtaza RC Oct 23 at 19:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.