There is no way whatsoever to delete this data with SPAR*L:
store.execute('DELETE DATA {' + triple + '}', function(){})
// SyntaxError: Expected [2] Query or [30] Update but "D" found."
I currently have no workaround for this, other than replacing all of the users' \ with /, which is not really acceptable, but good enough to to go forward with.
After figuring out my workaround for #54, I encountered new problems with string escaping.
Consider this triple, stored in a text file:
loaded like this:
then added to a store like this:
and can be retrieved like this:.
There is no way whatsoever to delete this data with SPAR*L:
I currently have no workaround for this, other than replacing all of the users'
\
with/
, which is not really acceptable, but good enough to to go forward with.