Norman, I presume you mean in the text form of the output of a query. What is printed is what is returned by the query. The expectation is that if the...
Hi, can somebody tell me by any chance some (or one) ontologymerger ? A tool that takes 2 ( or more) ontologys and makes one merged ontology out of them. ...
David Thanks - it looks the parsing precidnece of ^ is wrong in somewhay: as illustrated by: PREFIX : <http://example/> SELECT * WHERE { { ?x ^:p^:q^:r...
Hi, I want to run Jena schemagen utility from command line. The document about it does not tells about how to run the utility from a command line. LIke...
Hell Babar, ... Yes. ... All you need to do is ensure that: 1. you can run Java on your command line (this is just setting up your Java runtime path, it's...
I think this might be what im searching for: http://jena.sourceforge.net/javadoc/jena/rdfcat.html An RDF utility that takes its name from the Unix utility cat,...
... Hi Babar, the next release of Jena will have shell scripts to run all the Jena command line utilities, including schemagen. In the meantime you can look at...
Paolo Castagna
paolo.castagna@...
Jul 1, 2009 11:34 am
40618
HiPaolo; 1st a request; can you kindly send me the last email you sent me (about query methods), I delete it accidently, I want it as I get direction by...
Hi, Just a small question in Jena.shemagen. I am not able to pick the error in converting skos.rdf into skos.java using jena.schemagen. Process 1. Created a...
Hi, I'm loading them in from .ttl files into the memory model. It works just fine in that all of my queries on it come back as expected. This project very well...
Not any more - fixed! (Confusion between the grammar, which allows various things like formulae i.e. {} and variables, and the checking code that restricts it ...
Sorry, what do you mean by that? The RDF standard *does* allow literal subjects, or Jena will save graphs with literal subjects, though still not complying...
... The RDF standard does not. The SPARQL standard does (in fact this is necessary in the language) in triple patterns. They just won't match anything in a...
If I have data like: OntClass book = model.createClass( NS + "Book" ); OntClass softcover = model.createClass( NS + "Softcover" ); OntClass hardcover =...
... Andy With a bit more testing I realize that this problem only occurs when my domain ontology containing the subClassOf information is not in the same named...
Hello to you all Thanks in advance for any enlightenment that you may give me. I'm having a problem in SDB that probably relates to the maximum size of columns...
Hi again. Ended up solving the problem myself, but not in an elegant way. The steps are: 1 - find references to the number 500 in directory SDB-1.3.0 ...
Hi, I am using Jena 2.6.0 and have a problem with the iterator returned by listOneOf of an enumerated class. That's my code: EnumeratedClass enumClass =...
I just saw the message about the ConversionException in the ExtendedIterator, which seems to apply also to me. Will there be soon a new version of Jena or do I...
Hi, I had the same problem. The solution was to set UTF8 encoding for the database. createdb -E UTF8 <your_db>...
Vasyl Keretsman
vasiliy@...
Jul 2, 2009 7:35 am
40634
Hi David, ... Yes. From the point of view of the specs then your last statement implies that #Book is an individual, specifically an instance of the class...
... The range of has_gender is an owl:DataRange not an owl:EnumeratedClass so your code should be more like: Model raw = FileManager.get().loadModel( ...
Hi David, ... All these are the same problem in your design as per my last message. By making #Book the object of an owl:ObjectProperty you are creating ...
Thanks, it works with using DataRange. However, I check for the OntClass object which represents the range of the has_gender property whether it can be seen as...