Query1.Edit;
   Query1.FieldByName('bz3').AsString:='1';
   Query1.post;
上面语句
  当  Query1.sql.text:='select * from test '---》运行良好
  当  Query1.sql.text:='select * from test  order by bz1'---》运行出错,调试显示Query1.canmodify为false,即sql中含order by 时就不能修改?
(注:Query1.RequestLive 已经为true;)