我将Delphi 7与FibPlus组件一起使用。其中之一是TpFIBQuery
。
我正在使用通用表从表中加载数据
select * from TableName where Key = 1
返回的字段之一是 type BLOB(Text)
。
我似乎无法informatie
使用以下 3 种方式中的任何一种将值放入字符串列表:
Informatie.Text := FieldByName('Informatie').AsString // Returns the string 'BLOB'
Informatie.Text := BlobAsString('Informatie') // Returns ''
BlobToStrings('Informatie',Informatie) // Returns ''
我已使用 Database Workbench 确认表中的字段确实包含保存的文本。
任何人 ?