We are currently using Delphi with Borland database. We are planning to move from borland to Firebird libraries, (borland lib has mem leaks).
The problem that we are having now is, Firebird library returns a char with trailing spaces, which was somehow handled borland library. We have huge code written without any trimming.
So now if 'abc' is stored in char(10) field, it returns 'abc '. and our code fails. I was wondering if there is some configuration that I can do on the DB or firebird library to automatically trim char fields.
TStringField.FixedCharproperty toFalse. By default, aCHARfield is true, meaning it's a fixed width; I think (but don't have anyCHARcolumns to test against) if it's false it will trim the trailing spaces. – Ken White Dec 1 '11 at 15:31OnGetTextevent to do the trimming, but that requires changes if you haven't already been using persistent fields. – Ken White Dec 1 '11 at 15:35