This is the first post in a series about XQJ (JSR 225). The XQJ initiative aims to provide the standard Java API to access XQuery implementations. Eventually XQJ will be for XQuery what JDBC means for SQL. XQJ is currently in public review, the specification can be downloaded here.
I hope this series will give a good overview of the major interfaces and functionality offered by XQJ, mostly through example code. The majority of the code should be implementation independent, but I have to admit, it will be tested using DataDirect XQuery 3.0, which supports the XQJ Public Draft.
We have today the following essays in the XQJ series (the list is updated as more posts become available),
Let's start with our first simple XQJ application; the XQuery/XQJ version of "Hello World!".
[cc lang="java"]XQDataSource xqjd = new DDXQDataSource(); XQConnection xqjc = xqjd.getConnection(); XQExpression xqje = xqjc.createExpression(); XQSequence xqjs = xqje.executeQuery("'Hello World!'"); xqjs.writeSequence(System.out, null); xqjc.close(); [/cc]I assume most of it speaks for itself. But don't worry if you have some questions, things will become clear in the upcoming posts.
Some of you might recognize some of the JDBC concepts in the code example above. Indeed, the XQJ expert group decided to make XQJ stylistic consistent with JDBC. Similar to JDBC is has concepts like,
But at the same time, XQuery is not SQL, as such XQJ differs from JDBC,
The next post in this series will introduce data sources and setting up connections.
digg_skin = 'compact';
View all posts from Marc Van Cappellen on the Progress blog. Connect with us about all things application development and deployment, data integration and digital business.
Let our experts teach you how to use Sitefinity's best-in-class features to deliver compelling digital experiences.
Learn MoreSubscribe to get all the news, info and tutorials you need to build better business apps and sites