Le mardi 12 août 2014 à 13:57 -0400, Stefan Karpinski a écrit :
> You'd have to implement that string encoding, unfortunately. If it's
> Latin-1, it would be much easier and we could probably just resurrect
> an old implementation that we used to have.
Much better than implementing a custom encoding (which is pure madness
IMHO) is converting the strings to Unicode.

In addition to doing the conversion from your DBMS, you should be able
to do that from within Julia using UnicodeExtras, by accessing the
underlying array of the string:
decode(s.data, "cp1252")


Regards

Reply via email to