I need to store serialized JSON strings of types that include Greek letters (such as λ) on an sql server table.
Storing works just fine (field defined as nvarchar(max) data type) and sql prefixed with N) - but I’m having difficulties reading the Greek letters back into Julia with the Greek letters replaced by “?”.
Serialization of the object into JSON and subsequently casting it back into the relevant type works just fine without database interaction - so it seems to be purely db related.
I’m using the ODBC.jl package for this.
Any help is appreciated.
Thank you