How to run an XQuery from Java using BaseX?
I'm looking to run arbitrary XQuery code from Java. Oracle gives this example:
OXQDataSource ds = new OXQDataSource();
XQConnection con = ds.getConnection();
String query = "<hello-world>{1 + 1}</hello-world>";
XQPreparedExpression expr = con.prepareExpression(query);
XQSequence result = expr.executeQuery();
Should that not also be possible through BaseX
? To my understanding, BaseX is quite compliant with XQuery.
From the CLI arbitrary XQuery
code:
thufir@dur:~/basex$
thufir@dur:~/basex$ basex fetch.books.html.xq
[warning] /usr/bin/basex: Unable to locate /usr/share/java/jing.jar in /usr/share/java
<html xmlns="http://www.w3.org/1999/xhtml" class="no-js" lang="en-us">
<head>
<title>
All products | Books to Scrape - Sandbox
</title>
..
</body>
</html>thufir@dur:~/basex$
thufir@dur:~/basex$
thufir@dur:~/basex$ cat fetch.books.html.xq
fetch:xml(
'http://books.toscrape.com/',
map {
'parser': 'html',
'htmlparser': map { 'nons': false() }
}
)
thufir@dur:~/basex$
Other, non-proprietary XQuery
code runs through BaseX
as expected.
While this will populate the database:
package org.basex.examples.local;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Iterator;
import java.util.Properties;
import java.util.logging.Logger;
import org.basex.core.BaseXException;
import org.basex.core.Context;
import org.basex.core.Databases;
import org.basex.core.cmd.CreateDB;
import org.basex.core.cmd.List;
import org.basex.core.cmd.Set;
import org.basex.util.list.StringList;
public class Scraper {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private Scraper() {
}
public Scraper(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
private void list() throws BaseXException {
LOG.info(new List().execute(context));
}
private void drop() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
list();
}
private void create() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
LOG.info(new List().execute(context));
list();
}
private void infoOnDatabases() {
Databases databases = context.databases();
StringList stringListOfDatabases = databases.listDBs();
String currentDatabaseName = null;
Iterator<String> databaseIterator = stringListOfDatabases.iterator();
while (databaseIterator.hasNext()) {
currentDatabaseName = databaseIterator.next();
LOG.info(currentDatabaseName);
//xQuery here..
}
}
public void fetch() throws BaseXException, MalformedURLException {
drop();
create();
infoOnDatabases();
list();
context.close();
}
}
it's rather limited.
reference:
http://docs.basex.org/wiki/Java_Examples
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
https://stackoverflow.com/a/44638635/262852
https://docs.oracle.com/database/121/ADXDK/adx_j_xqj.htm#ADXDK115
java xml xpath xquery basex
add a comment |
I'm looking to run arbitrary XQuery code from Java. Oracle gives this example:
OXQDataSource ds = new OXQDataSource();
XQConnection con = ds.getConnection();
String query = "<hello-world>{1 + 1}</hello-world>";
XQPreparedExpression expr = con.prepareExpression(query);
XQSequence result = expr.executeQuery();
Should that not also be possible through BaseX
? To my understanding, BaseX is quite compliant with XQuery.
From the CLI arbitrary XQuery
code:
thufir@dur:~/basex$
thufir@dur:~/basex$ basex fetch.books.html.xq
[warning] /usr/bin/basex: Unable to locate /usr/share/java/jing.jar in /usr/share/java
<html xmlns="http://www.w3.org/1999/xhtml" class="no-js" lang="en-us">
<head>
<title>
All products | Books to Scrape - Sandbox
</title>
..
</body>
</html>thufir@dur:~/basex$
thufir@dur:~/basex$
thufir@dur:~/basex$ cat fetch.books.html.xq
fetch:xml(
'http://books.toscrape.com/',
map {
'parser': 'html',
'htmlparser': map { 'nons': false() }
}
)
thufir@dur:~/basex$
Other, non-proprietary XQuery
code runs through BaseX
as expected.
While this will populate the database:
package org.basex.examples.local;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Iterator;
import java.util.Properties;
import java.util.logging.Logger;
import org.basex.core.BaseXException;
import org.basex.core.Context;
import org.basex.core.Databases;
import org.basex.core.cmd.CreateDB;
import org.basex.core.cmd.List;
import org.basex.core.cmd.Set;
import org.basex.util.list.StringList;
public class Scraper {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private Scraper() {
}
public Scraper(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
private void list() throws BaseXException {
LOG.info(new List().execute(context));
}
private void drop() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
list();
}
private void create() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
LOG.info(new List().execute(context));
list();
}
private void infoOnDatabases() {
Databases databases = context.databases();
StringList stringListOfDatabases = databases.listDBs();
String currentDatabaseName = null;
Iterator<String> databaseIterator = stringListOfDatabases.iterator();
while (databaseIterator.hasNext()) {
currentDatabaseName = databaseIterator.next();
LOG.info(currentDatabaseName);
//xQuery here..
}
}
public void fetch() throws BaseXException, MalformedURLException {
drop();
create();
infoOnDatabases();
list();
context.close();
}
}
it's rather limited.
reference:
http://docs.basex.org/wiki/Java_Examples
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
https://stackoverflow.com/a/44638635/262852
https://docs.oracle.com/database/121/ADXDK/adx_j_xqj.htm#ADXDK115
java xml xpath xquery basex
1
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46
add a comment |
I'm looking to run arbitrary XQuery code from Java. Oracle gives this example:
OXQDataSource ds = new OXQDataSource();
XQConnection con = ds.getConnection();
String query = "<hello-world>{1 + 1}</hello-world>";
XQPreparedExpression expr = con.prepareExpression(query);
XQSequence result = expr.executeQuery();
Should that not also be possible through BaseX
? To my understanding, BaseX is quite compliant with XQuery.
From the CLI arbitrary XQuery
code:
thufir@dur:~/basex$
thufir@dur:~/basex$ basex fetch.books.html.xq
[warning] /usr/bin/basex: Unable to locate /usr/share/java/jing.jar in /usr/share/java
<html xmlns="http://www.w3.org/1999/xhtml" class="no-js" lang="en-us">
<head>
<title>
All products | Books to Scrape - Sandbox
</title>
..
</body>
</html>thufir@dur:~/basex$
thufir@dur:~/basex$
thufir@dur:~/basex$ cat fetch.books.html.xq
fetch:xml(
'http://books.toscrape.com/',
map {
'parser': 'html',
'htmlparser': map { 'nons': false() }
}
)
thufir@dur:~/basex$
Other, non-proprietary XQuery
code runs through BaseX
as expected.
While this will populate the database:
package org.basex.examples.local;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Iterator;
import java.util.Properties;
import java.util.logging.Logger;
import org.basex.core.BaseXException;
import org.basex.core.Context;
import org.basex.core.Databases;
import org.basex.core.cmd.CreateDB;
import org.basex.core.cmd.List;
import org.basex.core.cmd.Set;
import org.basex.util.list.StringList;
public class Scraper {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private Scraper() {
}
public Scraper(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
private void list() throws BaseXException {
LOG.info(new List().execute(context));
}
private void drop() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
list();
}
private void create() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
LOG.info(new List().execute(context));
list();
}
private void infoOnDatabases() {
Databases databases = context.databases();
StringList stringListOfDatabases = databases.listDBs();
String currentDatabaseName = null;
Iterator<String> databaseIterator = stringListOfDatabases.iterator();
while (databaseIterator.hasNext()) {
currentDatabaseName = databaseIterator.next();
LOG.info(currentDatabaseName);
//xQuery here..
}
}
public void fetch() throws BaseXException, MalformedURLException {
drop();
create();
infoOnDatabases();
list();
context.close();
}
}
it's rather limited.
reference:
http://docs.basex.org/wiki/Java_Examples
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
https://stackoverflow.com/a/44638635/262852
https://docs.oracle.com/database/121/ADXDK/adx_j_xqj.htm#ADXDK115
java xml xpath xquery basex
I'm looking to run arbitrary XQuery code from Java. Oracle gives this example:
OXQDataSource ds = new OXQDataSource();
XQConnection con = ds.getConnection();
String query = "<hello-world>{1 + 1}</hello-world>";
XQPreparedExpression expr = con.prepareExpression(query);
XQSequence result = expr.executeQuery();
Should that not also be possible through BaseX
? To my understanding, BaseX is quite compliant with XQuery.
From the CLI arbitrary XQuery
code:
thufir@dur:~/basex$
thufir@dur:~/basex$ basex fetch.books.html.xq
[warning] /usr/bin/basex: Unable to locate /usr/share/java/jing.jar in /usr/share/java
<html xmlns="http://www.w3.org/1999/xhtml" class="no-js" lang="en-us">
<head>
<title>
All products | Books to Scrape - Sandbox
</title>
..
</body>
</html>thufir@dur:~/basex$
thufir@dur:~/basex$
thufir@dur:~/basex$ cat fetch.books.html.xq
fetch:xml(
'http://books.toscrape.com/',
map {
'parser': 'html',
'htmlparser': map { 'nons': false() }
}
)
thufir@dur:~/basex$
Other, non-proprietary XQuery
code runs through BaseX
as expected.
While this will populate the database:
package org.basex.examples.local;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Iterator;
import java.util.Properties;
import java.util.logging.Logger;
import org.basex.core.BaseXException;
import org.basex.core.Context;
import org.basex.core.Databases;
import org.basex.core.cmd.CreateDB;
import org.basex.core.cmd.List;
import org.basex.core.cmd.Set;
import org.basex.util.list.StringList;
public class Scraper {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private Scraper() {
}
public Scraper(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
private void list() throws BaseXException {
LOG.info(new List().execute(context));
}
private void drop() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
list();
}
private void create() throws BaseXException {
list();
new Set("parser", parserType).execute(context);
new CreateDB(databaseName, url.toString()).execute(context);
LOG.info(new List().execute(context));
list();
}
private void infoOnDatabases() {
Databases databases = context.databases();
StringList stringListOfDatabases = databases.listDBs();
String currentDatabaseName = null;
Iterator<String> databaseIterator = stringListOfDatabases.iterator();
while (databaseIterator.hasNext()) {
currentDatabaseName = databaseIterator.next();
LOG.info(currentDatabaseName);
//xQuery here..
}
}
public void fetch() throws BaseXException, MalformedURLException {
drop();
create();
infoOnDatabases();
list();
context.close();
}
}
it's rather limited.
reference:
http://docs.basex.org/wiki/Java_Examples
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
https://stackoverflow.com/a/44638635/262852
https://docs.oracle.com/database/121/ADXDK/adx_j_xqj.htm#ADXDK115
java xml xpath xquery basex
java xml xpath xquery basex
edited Jan 3 at 2:07
Thufir
asked Jan 1 at 15:14
ThufirThufir
3,1761771163
3,1761771163
1
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46
add a comment |
1
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46
1
1
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46
add a comment |
1 Answer
1
active
oldest
votes
Simplest possible query result:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :run
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: name Resources Size Input Path
----------------------------------------------------------------------
w3school_data 1 5178 https://www.w3schools.com/xml/note.xml
1 Databases.
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: Don't forget me this weekend!
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: query was //note/body/text()
BUILD SUCCESSFUL in 1s
4 actionable tasks: 3 executed, 1 up-to-date
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
Java:
package org.basex.examples.local;
import java.net.MalformedURLException;
..
import org.basex.core.cmd.XQuery;
public class DatabaseQuery {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private DatabaseQuery() {
}
public DatabaseQuery(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
public void runQuery(String query) throws BaseXException {
new Open(databaseName).execute(context);
LOG.info(new List().execute(context));
LOG.info(new XQuery(query).execute(context));
LOG.info("query wasttt" + query);
context.close();
}
}
(Same class, a configuration parameter fetches xml
which was more readable for me to query against.)
The query
method from:
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996575%2fhow-to-run-an-xquery-from-java-using-basex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Simplest possible query result:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :run
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: name Resources Size Input Path
----------------------------------------------------------------------
w3school_data 1 5178 https://www.w3schools.com/xml/note.xml
1 Databases.
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: Don't forget me this weekend!
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: query was //note/body/text()
BUILD SUCCESSFUL in 1s
4 actionable tasks: 3 executed, 1 up-to-date
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
Java:
package org.basex.examples.local;
import java.net.MalformedURLException;
..
import org.basex.core.cmd.XQuery;
public class DatabaseQuery {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private DatabaseQuery() {
}
public DatabaseQuery(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
public void runQuery(String query) throws BaseXException {
new Open(databaseName).execute(context);
LOG.info(new List().execute(context));
LOG.info(new XQuery(query).execute(context));
LOG.info("query wasttt" + query);
context.close();
}
}
(Same class, a configuration parameter fetches xml
which was more readable for me to query against.)
The query
method from:
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
add a comment |
Simplest possible query result:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :run
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: name Resources Size Input Path
----------------------------------------------------------------------
w3school_data 1 5178 https://www.w3schools.com/xml/note.xml
1 Databases.
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: Don't forget me this weekend!
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: query was //note/body/text()
BUILD SUCCESSFUL in 1s
4 actionable tasks: 3 executed, 1 up-to-date
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
Java:
package org.basex.examples.local;
import java.net.MalformedURLException;
..
import org.basex.core.cmd.XQuery;
public class DatabaseQuery {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private DatabaseQuery() {
}
public DatabaseQuery(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
public void runQuery(String query) throws BaseXException {
new Open(databaseName).execute(context);
LOG.info(new List().execute(context));
LOG.info(new XQuery(query).execute(context));
LOG.info("query wasttt" + query);
context.close();
}
}
(Same class, a configuration parameter fetches xml
which was more readable for me to query against.)
The query
method from:
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
add a comment |
Simplest possible query result:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :run
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: name Resources Size Input Path
----------------------------------------------------------------------
w3school_data 1 5178 https://www.w3schools.com/xml/note.xml
1 Databases.
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: Don't forget me this weekend!
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: query was //note/body/text()
BUILD SUCCESSFUL in 1s
4 actionable tasks: 3 executed, 1 up-to-date
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
Java:
package org.basex.examples.local;
import java.net.MalformedURLException;
..
import org.basex.core.cmd.XQuery;
public class DatabaseQuery {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private DatabaseQuery() {
}
public DatabaseQuery(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
public void runQuery(String query) throws BaseXException {
new Open(databaseName).execute(context);
LOG.info(new List().execute(context));
LOG.info(new XQuery(query).execute(context));
LOG.info("query wasttt" + query);
context.close();
}
}
(Same class, a configuration parameter fetches xml
which was more readable for me to query against.)
The query
method from:
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
Simplest possible query result:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :run
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: name Resources Size Input Path
----------------------------------------------------------------------
w3school_data 1 5178 https://www.w3schools.com/xml/note.xml
1 Databases.
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: Don't forget me this weekend!
Jan 02, 2019 7:44:16 PM org.basex.examples.local.DatabaseQuery runQuery
INFO: query was //note/body/text()
BUILD SUCCESSFUL in 1s
4 actionable tasks: 3 executed, 1 up-to-date
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
Java:
package org.basex.examples.local;
import java.net.MalformedURLException;
..
import org.basex.core.cmd.XQuery;
public class DatabaseQuery {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private Properties properties = new Properties();
private URL url = null;
private String databaseName = null;
private Context context = null;
private String parserType = null;
private DatabaseQuery() {
}
public DatabaseQuery(Properties properties) {
this.properties = properties;
LOG.fine(properties.toString());
}
public void init() throws MalformedURLException {
parserType = properties.getProperty("parserType");
url = new URL(properties.getProperty(parserType + "URL"));
databaseName = properties.getProperty("databaseName");
context = new Context();
}
public void runQuery(String query) throws BaseXException {
new Open(databaseName).execute(context);
LOG.info(new List().execute(context));
LOG.info(new XQuery(query).execute(context));
LOG.info("query wasttt" + query);
context.close();
}
}
(Same class, a configuration parameter fetches xml
which was more readable for me to query against.)
The query
method from:
https://github.com/BaseXdb/basex/blob/master/basex-examples/src/main/java/org/basex/examples/local/RunQueries.java
edited Jan 3 at 3:45
answered Jan 3 at 2:35
ThufirThufir
3,1761771163
3,1761771163
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
add a comment |
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
1
1
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
The code segments are long enough that it's a bit tricky to parse out exactly what changed between the question and answer -- any chance of calling that out? (Similarly, if it's possible to cull some of the helpers and still have code complete enough to act as a reproducer, that would help improve focus, and thus ease-of-comprehension).
– Charles Duffy
Jan 3 at 3:26
bit messy, I know.
– Thufir
Jan 3 at 3:44
bit messy, I know.
– Thufir
Jan 3 at 3:44
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996575%2fhow-to-run-an-xquery-from-java-using-basex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
If you want to use that API then I think github.com/BaseXdb/basex/blob/master/basex-examples/src/main/… is the relevant example in the BaseX examples section. I am not sure however en.wikipedia.org/wiki/XQuery_API_for_Java got ever updated for XQuery 3 or 3.1 so using the native API of your XQuery database processor or processor in general these days might give you more flexibility and easy access to the richer type system (maps, arrays) of XQuery 3.1.
– Martin Honnen
Jan 3 at 6:46