begin
   .....
   storeprocedure.execute; //执行存储过程
   .....
   adocommand1.execute;    //执行sql语句
end;   现在的要求:如果 sql语句执行失败,则全部进行回滚,如何处理?
   就是说如果sql语句执行失败, 那么存储过程对数据库进行的操作,也要全部回退掉?