I have a big chunk of textual data which I split and write multiple rows of a varchar(255)
column of a table. Sometimes, the last character happens to be a space. When I read back this row, the trailing space is chopped and I get only 254 characters. This messes up my data when I append the next row to the end of this one.
My code sends the full 255 char (incl space) to the DB API. How can I check that the trailing space is actually written to the table?
I am not in a position to rewrite/redesign legacy code. Is there any setting - either in the DB, DB interface, read/write calls etc - that I can use to preserve the trailing space?