I am currently thinking about and planning a very simple JDBC driver on top of Lucene that supports a very,very,very (!) limited SQL syntax to insert, update and select (in general the JDBC driver does not limit to SQL at all, you can even pass a Lucene Query String as input to Statement...). The index will appear as one table. Once it is finished it will be provided as a contrib module.
----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: [email protected] > -----Original Message----- > From: Bernd Fondermann [mailto:[email protected]] > Sent: Monday, December 14, 2009 12:30 PM > To: [email protected] > Subject: Re: Need help with Lucene Connectors > > 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. > > > >
