Package org.openrdf.query

Examples of org.openrdf.query.Update.execute()


        RepositoryConnection connection2 = repository.getConnection();
        try {
            String query = String.format("DELETE { <%s> <%s> ?v } INSERT { <%s> <%s> ?v . } WHERE { <%s> <%s> ?v }", subject.stringValue(), predicate.stringValue(), subject.stringValue(), predicate.stringValue(), subject.stringValue(), predicate.stringValue());

            Update u = connection2.prepareUpdate(QueryLanguage.SPARQL, query);
            u.execute();

            connection2.commit();
        } finally {
            connection2.close();
        }
View Full Code Here


        String update = "DELETE { ?s ?p ?o } INSERT { <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/name> \"Hans Meier\" . <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/based_near> <http://dbpedia.org/resource/Traunstein> . <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/interest> <http://rdf.freebase.com/ns/en.linux> } WHERE { ?s ?p ?o . FILTER ( ?s = <http://localhost:8080/LMF/resource/hans_meier> ) }";

        RepositoryConnection connectionUpdate = repository.getConnection();
        try {
            Update u = connectionUpdate.prepareUpdate(QueryLanguage.SPARQL, update);
            u.execute();
            connectionUpdate.commit();
        } finally {
            connectionUpdate.close();
        }
View Full Code Here

                "} WHERE {}";

        RepositoryConnection connectionInsert = repository.getConnection();
        try {
            Update u = connectionInsert.prepareUpdate(QueryLanguage.SPARQL, insert);
            u.execute();
            connectionInsert.commit();
        } finally {
            connectionInsert.close();
        }
View Full Code Here

                "} ";

        RepositoryConnection connectionUpdate = repository.getConnection();
        try {
            Update u = connectionUpdate.prepareUpdate(QueryLanguage.SPARQL, update);
            u.execute();
            connectionUpdate.commit();
        } finally {
            connectionUpdate.close();
        }
View Full Code Here

        try {
            RepositoryConnection connection = sesameService.getConnection();
            try {
                connection.begin();
                Update update = connection.prepareUpdate(queryLanguage,query,configurationService.getBaseUri());
                update.execute();
                connection.commit();
            } catch (UpdateExecutionException e) {
                connection.rollback();
                throw new MarmottaException("error while executing update",e);
            } catch (MalformedQueryException e) {
View Full Code Here

        RepositoryConnection connection2 = repository.getConnection();
        try {
            String query = String.format("DELETE { <%s> <%s> ?v } INSERT { <%s> <%s> ?v . } WHERE { <%s> <%s> ?v }", subject.stringValue(), predicate.stringValue(), subject.stringValue(), predicate.stringValue(), subject.stringValue(), predicate.stringValue());

            Update u = connection2.prepareUpdate(QueryLanguage.SPARQL, query);
            u.execute();

            connection2.commit();
        } finally {
            connection2.close();
        }
View Full Code Here

        String update = "DELETE { ?s ?p ?o } INSERT { <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/name> \"Hans Meier\" . <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/based_near> <http://dbpedia.org/resource/Traunstein> . <http://localhost:8080/LMF/resource/hans_meier> <http://xmlns.com/foaf/0.1/interest> <http://rdf.freebase.com/ns/en.linux> } WHERE { ?s ?p ?o . FILTER ( ?s = <http://localhost:8080/LMF/resource/hans_meier> ) }";

        RepositoryConnection connectionUpdate = repository.getConnection();
        try {
            Update u = connectionUpdate.prepareUpdate(QueryLanguage.SPARQL, update);
            u.execute();
            connectionUpdate.commit();
        } finally {
            connectionUpdate.close();
        }
View Full Code Here

                "} WHERE {}";

        RepositoryConnection connectionInsert = repository.getConnection();
        try {
            Update u = connectionInsert.prepareUpdate(QueryLanguage.SPARQL, insert);
            u.execute();
            connectionInsert.commit();
        } finally {
            connectionInsert.close();
        }
View Full Code Here

                "} ";

        RepositoryConnection connectionUpdate = repository.getConnection();
        try {
            Update u = connectionUpdate.prepareUpdate(QueryLanguage.SPARQL, update);
            u.execute();
            connectionUpdate.commit();
        } finally {
            connectionUpdate.close();
        }
View Full Code Here

        try {
            RepositoryConnection connection = sesameService.getConnection();
            try {
                connection.begin();
                Update update = connection.prepareUpdate(queryLanguage,query,configurationService.getBaseUri());
                update.execute();
                connection.commit();
            } catch (UpdateExecutionException e) {
                connection.rollback();
                throw new MarmottaException("error while executing update",e);
            } catch (MalformedQueryException e) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.