Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\'

2017-05-22 Thread David G. Johnston
On Monday, May 22, 2017, Melvin Davidson wrote: > *>Unless you omit the E prefix on the string literal, which the OP did.* > > > *Nope! That results in 'a//b' but the op wants 'a/b';* > *Hence the need to Escape.* > PgAdmin is buggy if it doesn't know that there is no output difference between E

Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\'

2017-05-22 Thread Melvin Davidson
Subject: Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\' On Monday, May 22, 2017, Melvin Davidson wrote: >When I have somewhere in text value single backslash char, then everything >behind this char will not be highlighted correct. That is

Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\'

2017-05-22 Thread David G. Johnston
On Monday, May 22, 2017, Melvin Davidson wrote: > *>When I have somewhere in text value single backslash char, then > everything behind this char will not be highlighted correct.* > > * > * > *That is becau

Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\'

2017-05-22 Thread mammoth.power
: Montag, 22. Mai 2017 21:39 An: mammoth.po...@gmx.us; pgadmin-support@postgresql.org Betreff: Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\' >When I have somewhere in text value single backslash char, then everything >behind this char wi

Re: [pgadmin-support] SQL syntax highlightning don't work for single backslash '\'

2017-05-22 Thread Melvin Davidson
>When I have somewhere in text value single backslash char, then everything >behind this char will not be highlighted correct. That is because the Backslash is an ESCAPE character, so you must ESCAPE it and use two backslashes if you want it to be interpretedas a literal. Also, do not forget to e