Sparql query doesn't upadate when insert some data through java code
I'm trying to insert data through my java code to the owl file which is loaded into Fuseki server. Update query doesn't give any error message. But owl file doesn't update.I'm using jena library and implemented using java code. What is the wrong in my code? public boolean addLecturerTriples(String fName, String lName, String id, String module) { try{ ArrayList<String> subject = new ArrayList<String>(); ArrayList<String> predicate = new ArrayList<String>(); ArrayList<String> object = new ArrayList<String>(); subject.add("<http://people.brunel.ac.uk/~csstnns/university.owl#"+fName+">");