I am assuming that you have a TTable setup pointing to TABLE1 named Table1.
Table1.Edit;
Table1.FieldbyName('SOLUTIONS').asString:=FileToString(Edit1.Text);
Table1.Post;
where FileToString is the following function:
function FileToString(const AFilename:string):string;
var
LSize:integer;
LStream:TStream;
begin
{Code a combinaton of TStrings.ReadFromFile and TStrings.ReadFromStream}
LStream:=TFileStream.Create(AFilename,fmOpenRead or fmShareDenyWrite);
try
LSize:=LStream.Size;
SetString(Result, nil, LSize);
LStream.Read(Pointer(Result)^, LSize);
finally
LStream.Free;
end;
end;
Have fun
Simon