|
Hello everyone,
I'm newby with owlready2. When calling world().set_backend(filename, exclusive, read_only) I got an error if I put True as value for readOnly. The error is:
sqlite3.OperationalError: unable to open database file
My code looks like this : self.__world.set_backend(
filename=KB_PATH + ".sqlite3",
exclusive=False,
read_only=readOnly
)
where KB_PATH represents the path to an existant ontology.
Does anyone have any idea about how to deal with that issue?
Any help is welcomed.
|