RE: Using QueryParser with a single field

2005-07-21 Thread Peter Gelderbloem
I think it would be better in this case to not use QueryParser. It is not designed for your situation. Build the query using BooleanQuery instead. Peter Gelderbloem - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

Re: Using QueryParser with a single field

2005-07-20 Thread Erik Hatcher
On Jul 19, 2005, at 8:10 AM, Eyal wrote: Hi, In my client application I allow the user to build a query by selecting a field from a combobox and entering a value to search by. I want the user to enter free text queries for each field, but I don't want to parse it myself so I thought I'd u

Using QueryParser with a single field

2005-07-19 Thread Eyal
Hi, In my client application I allow the user to build a query by selecting a field from a combobox and entering a value to search by. I want the user to enter free text queries for each field, but I don't want to parse it myself so I thought I'd use QueryParser for that. My problem is that if th