下面是插入语句,
adoquery1.SQL.Text:='insert into tbltemp(image,name) VALUES (:photo,'''+edit1.text+''')'; // 进行插入操作
  adoQuery1.Parameters.ParamByName('photo').LoadFromStream(Stream,ftBlob); // 读取保存的内存图
如何改成修改语句adoquery1.SQL.Add('update tbltempset id='''+edit1.text+'''');.......adoquery1.SQL.Add(',image='':photo''');
adoquery1.SQL.Add(' where [NO]='''+intNum+'''');
adoQuery1.Parameters.ParamByName('photo').LoadFromStream(Stream,ftBlob); //  这句怎么改