tags:

views:

33

answers:

1

Hi all! I am working in a struts project and there I am using Solr Server as the database.

I need the Java codes and procedure to select, insert, update and delete. Can any one help me?

+2  A: 

Solr is not a relational database, therefore there is no SQL or relational algebra.

To add/update/delete/query documents, use the SolrJ library. Here's a quick tutorial.

Mauricio Scheffer
Thanks thats a great help
Kuntal Basu