Start a new topic
Solved

Database Query ampersat character (@) recognized as parameter

A Database Query contains the ampersat character (@) where the character does not represent a query parameter:


SELECT Department

WHERE Email='bryan@infoburst.net'


InfoBurst recognizes the @ character as representing a parameter. To work around this issue, add a backslash character (\) before the @ character:


SELECT Department

WHERE Email='bryan\@infoburst.net'



Login or Signup to post a comment