On Fri, Dec 11, 2009 at 20:55, JavaGuy84 <[email protected]> wrote: > > Hi, > > I am trying to find out if there is any open connectors availble to connect > to Lucene db. I have a tool which can connect to any of the JDBC / ODBC > sources and can also use any custom connectors and I am trying to use the > tool to retreive the lucene indexed data and store it in my custom DB. > > Any idea how this can be implemented?
As far as I know, there is no binding from Lucene to JDBC. Lucene does not use a relational database for storage. You'd have to read and map Lucene's index file(s) and contained documents yourself and write them into your DB. Bernd > > Thanks a lot for your help!!! > > Thanks, > Barani > -- > View this message in context: > http://old.nabble.com/Need-help-with-Lucene-Connectors-tp26750559p26750559.html > Sent from the Lucene - General mailing list archive at Nabble.com. > >
