Hi,
You need to define the SQLite file at the beginning of your program, as follows:
default_world.set_backend(filename = "your_file.sqlite3")
Then, you can save the current state with:
default_world.save()
To recover the state previously saved, just call again the default_world.set_backend(...) lines.
Then, you can get your ontologies as usual :
onto = get_ontology("
http://server.org/ontology_name.owl").load()
If already present in the quadstore, the ontology will be loaded from the quadstore, not from the IRI.
Jiba