SmartDataAnalytics/Sparqlify

Encoding Problem: E.g. 'ö' is not retained in the SQL

Opened this issue · 1 comments

Need to figure out which component causes the troubles

select * { ?s rdfs:label ?label . FILTER(?label ='Stötteritz')  }

yields on the SQL level:

a_8359."v" = 'St??tteritz'::text

Meh, cannot reproduce this bug locally. Most likely, its due to a missing explicit UTF-8 arg for one of the streams, e.g.

new java.io.PrintWriter(..., "UTF-8")
new OutputStreamWriter(..., "UTF-8");