R2RML Parser is an award-winning tool that can export relational database contents as RDF graphs, based on an R2RML mapping document.
69
stars
21
forks
source link
language of constant literal is malformed #10
Closed
VladimirAlexiev closed 10 years ago
This code:
rr:property dc:title; rr:object "whatever"@bg
causes this to be emitted:dc:title "whatever@bg"
, i.e. puts the lang tag inside the string.This code is processed properly:
rr:property dc:title; rr:objectMap [rr:column "col"; rr:language "bg"]
and prodices egdc:title "whatever"@bg