Aladdin Lampé wrote:
> Is it possible to include a \" (double quote) inside a string-literal?
> I wanted to use a string-literal like "this is \"not working\"" but sqlite's 
> SQL parser doesn't seem to accept this.
> Is it the intended behaviour or did I do something wrong?

Yes, simply use SQL standard single quotes to delimit the literal 
string. This:

   'this is "not working"'

will work.

HTH
Dennis Cote
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to