You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by MANUEL Q <ma...@favf.mx> on 2017/10/10 01:36:14 UTC

Fukesi insert data does not save in OWL file

Hello, I'm new to jena, I'm trying to use fukesi to enter data into an
owl file, using the following code, it gives me an "Update succeeded"
result:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX: <http://www.semanticweb.org/saku/ontologies/2015/3/mamiferos#>
INSERT Date {
: leon rdf: type: Carnivoros,
              owl: NamedIndividual;
     : literal 44.
}

using a dataset: Persistent - dataset will persist across Fuseki restarts

but the new inserted data is not saved in the owl file.

how can I make the inserted data be saved in the owl file?


Thank you