Search found 1 match
- 25.01.2010, 21:32
- Forum: ZeosLib 7.0 Beta Forum
- Topic: BLOB corrupted from previous version
- Replies: 16
- Views: 2270
Got same issue. I managed to overcome it by changing how zeos decodes and encodes strings. First, in ZDbcSqliteUtils unit I added my own 2 functions: function DecodeStringToBin(Value: AnsiString): AnsiString; begin if Odd(Length(Value)) then Value := '0'+Value; SetLength(Result, Length(Value) div 2)...