: You need to use MultiFieldQueryParser : : http://lucene.apache.org/java/docs/api/org/apache/lucene/queryParser/MultiFieldQueryParser.html
or put the text from all of your fields into one uber catchall field and make that the default... foreach (column) { Field f = new Field(column.name, column.value); Field c = new Field("catchall", column.value); doc.add(f); doc.add(c); } -Hoss --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]