Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the Escape character for SQL snippet file

I am writing a SQL Snippet in VS2010 and I want to have "$" as a character inside the SQL Snippet, but the way the snippet recognize a variable is by bounding a word with "$". EX: $var1$

Anybody know what the escape character is for SQL Snippet in VS2010, so it won't think of it as a variable by mistake?

Thank You.

like image 887
Amin J Avatar asked Apr 28 '11 18:04

Amin J


1 Answers

You should be able to escape it by doubling it - try $$.

like image 180
Oded Avatar answered Sep 26 '22 16:09

Oded