Hi

I have created a property table and I would like to query it using SPARQL.
My code looks as follows:

PropertyTable propertytable = new PropertyTableArrayImpl(1, 1);
Column something = propertytable.createColumn(NodeFactory.createURI("
http://example.org/"; + "something"));
Row row = propertytable.createRow(NodeFactory.createURI("http://example.org/";
+ "apple"));
row.setValue(something, NodeFactory.createLiteral("JOHN"));

How do I query the property table?

Additionally then I would also like to make my property table persistent,
i.e. save it to the disk.
As fare as I know then it is only possible to save it as a CSV file, is
there any other options?

Regards
Kim A. Jakobsen

Reply via email to