Re: Please Help me on Lucene

2007-02-01 Thread Chris Hostetter
Please, do not ever, under any circumstances at all, cross post a message to all of these lists -- there is absolutely no reason for it, and doing so will most likely only make people mad and uncooporative. if you are trying to use Java Lucene, then post your message to java-user list. if you ar

Re: Please Help me on Lucene

2007-02-01 Thread Christoph Pächter
I am also only novice, but that should work for you. One row in your table ==> one doc in lucene: I would indice it like that for one row/document: Document doc = new Document(); doc.add(new Field("prod_Id doc.add(new Field("prod_name... ... writer.addDocument(doc); Now check your index