FWIW you may also want to drop the boolean ops in favour of + and - (OR
being default)
pozdrawiam,
LAFK
2015-05-08 18:59 GMT+02:00 Erick Erickson :
> Steven:
>
> They're listed on the ref guide I posted. Not a concise list, but
> you'll see && || and other "interesting" bits.
>
> On Fri, May 8,
Steven:
They're listed on the ref guide I posted. Not a concise list, but
you'll see && || and other "interesting" bits.
On Fri, May 8, 2015 at 9:20 AM, Steven White wrote:
> Hi Erick,
>
> Is there a documented list of all operators (AND, OR, NOT, etc.) that also
> need to be escaped? Are there
Hi Erick,
Is there a documented list of all operators (AND, OR, NOT, etc.) that also
need to be escaped? Are there more beside the 3 I listed?
Thanks
Steve
On Fri, May 8, 2015 at 11:47 AM, Erick Erickson
wrote:
> Each of the characters you identified are characters that have meaning
> to the
Each of the characters you identified are characters that have meaning
to the query parser, '+' is a mandatory clause, '-' is a NOT operator
and * is a wildcard. To get through the query parser, these (and a
bunch of others, see below) must be escaped.
Personally, though, I'd pre-scrub the data. D