Home
Getting StartedGetting Started
JoSQL is very easy to use. Just add the jar file(s) in the 3rd-party-jars directory to your CLASSPATH and then added the JoSQL-x.y.jar jar file to your CLASSPATH (where x and y indicate the version). Then just do:
Query q = new Query ();
q.parse (yourQueryText);
List results = q.execute (yourObjects);
It's that simple!

It should be noted that the parse and execute are separate operations. This is to allow re-use of the Query object. For detailed usage examples see the examples page.
See Also