Package virtuoso.jena.driver

Examples of virtuoso.jena.driver.VirtuosoUpdateRequest


 
  public void insertAnnotString(String variableName, String property, String annotValue){
    StringBuffer buffer = new StringBuffer();
    buffer.append("INSERT INTO GRAPH  ").append(RICORDO).append(SPACE);
    buffer.append("{ <").append(variableName).append("> <http://biomodels.net/biology-qualifiers/").append(property).append("> <").append(annotValue).append("> }");
        VirtuosoUpdateRequest  vur = VirtuosoUpdateFactory.create(buffer.toString(), graph);
        System.out.println(buffer.toString());
        vur.exec();
       
  }
View Full Code Here

TOP

Related Classes of virtuoso.jena.driver.VirtuosoUpdateRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.