Hi
I'm creating dataset derived from TDataSet. I have a problem with
adding integers in TDataSet.GetFieldData method. For now, I can only
add strings this way:
if Buffer <> nil then
begin
StrLCopy(Buffer, 'Hello World', 11);
result := true;
end;
But I need to add Integer. And boolean. Thanks.