geoff schrieb:
> I checked an the the chr(85) is in the string - displays as the
> elipses symbol (...) -
You mean chr(0x85). This looks like Windows-1252 encoding. You need to
recode this to UTF-8 if your database is set to UTF-8. In principle,
that can be achieved like this:
chr(0x85).decode('cp1252').encode('utf-8')
-- Christoph