0
My problem is this: I am issuing an electronic correction letter in C# and at the time of saving the XML of the event returned by SEFAZ, as much as all the characters in the file are normal, when saving in the database as blob they look like this, with these strange characters ("xE7, xE3") when I export the file:
Does anyone have any idea how to fix this?
Edit1: And when I try to load this xml with these strange characters it launches Xmlexception complaining of invalid character
What kind of data in the column where you are saving this Xml?
– Pablo Tondolo de Vargas
the data type of the column is longblob
– DxDReaper
the collation is latin-swedish_ci, I imagine that’s it
– DxDReaper
Characters are truced your database does not support utf-8 or latin characters.
– M8n
Set to utf-8
– M8n