这段代码在查询分析器内已经通过,为何在Delphi内却报错!
 if  Exists(Select name from Sysobjects where name='Update_Glass_Stock_Count')
 drop procedure Update_Glass_Stock_Count 
 go 
 Create Procedure Update_Glass_Stock_Count @aQuantity Float,@aDegree Char(11),@aType Char(20) as
 Update Glass_Stock_Count set Count_Quantity=@aQuantity where Count_Degree=@aDegree and Count_Type=@aTypeDelphi中:   Create_Procedure[0]:=
                        ' if  Exists(Select name from Sysobjects where name=''Update_Glass_Stock_Count'')'+
                        ' drop procedure Update_Glass_Stock_Count '+
                        ' go '+
                        ' Create Procedure Update_Glass_Stock_Count @aQuantity Float,@aDegree Char(11),@aType Char(20) as'+
                        ' Update Glass_Stock_Count set Count_Quantity=@aQuantity where Count_Degree=@aDegree and Count_Type=@aType';