一:
qrytemp.Close;
qrytemp.SQL.Text:='select image2 from cm_record';
qrytemp.Open;
就提示“数据类型不被支持”
二:
ImageStream:=TFileStream.Create(edit1.Text,fmOpenRead);
    qrytemp.Close;
    qrytemp.SQL.Text:='update cm_record set Image2=:Image where CaseCode=''2005092605283990000''';
    qrytemp.Parameters.ParamByName('Image').LoadFromStream(ImageStream,ftBlob);
    qrytemp.ExecSQL;
    ImageStream.Free;
内容好象没有写进去