jena - malformed sparql delete query -


i update data property assertion using sparql, malformed query exception @ delete statement when try run in protege. i'm new sparql , can't figure out what's wrong query :

prefix m: <http://www.semanticweb.org/exemple#>     delete  { ?o owl:minqualifiedcardinality ?min. }     insert { ?o owl:minqualifiedcardinality “2000”^^xsd:decimal. }     {          m:revenu rdfs:subclassof ?o.         ?o owl:minqualifiedcardinality ?min.     } 

have @ sparql.org's update validator. when paste query there, , after adding missing prefixes, get:

lexical error @ line 10, column 45. encountered: "\u201c" (8220), after : ""

if closely, you'll notice you're using "smart quotes" (i.e., “ , ”) rather "straight quotes" (i.e., "). if you're not using one, may want plain text editor composing queries.


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -