Oracle
 sql >> Base de données >  >> RDS >> Oracle

ClientDataSet TBCDField rounding

J'ai résolu le problème avec une autre solution.

type
   TInternalQuery = class(TQuery)
   protected
      procedure InternalInitFieldDefs; override;
   public
      constructor Create(AOwner: TComponent; const qryGen: TQuery); reintroduce;
   end;

constructor TInternalQuery.Create(AOwner: TComponent; const qryGen: TQuery);
var
   intCont: Integer;
begin
   inherited Create(AOwner);
   Self.DatabaseName := qryGen.DatabaseName;
   Self.UpdateObject := qryGen.UpdateObject;

   Self.SQL.Text := qryGen.SQL.Text;

   for intCont := 0 to Self.ParamCount - 1 do
   begin
     Self.Params[intCont].Value := qryGen.Params[intCont].Value;
   end;  
end;

procedure TInternalQuery.InternalInitFieldDefs;
var
   intCont: Integer;
begin
   inherited InternalInitFieldDefs;
   for intCont := 0 to FieldDefs.Count - 1 do
   begin
      if (FieldDefs[intCont].Size = 0) and (FieldDefs[intCont].DataType = ftBCD) then
      begin
         FieldDefs[intCont].Precision := 64;
         FieldDefs[intCont].Size := 32;
      end;  
   end;  
end;

le problème est ((FieldDefs[intCont].Size =0) et (FieldDefs[intCont].DataType =ftBCD)). lorsque ClientDataSet est créé, le champ est tronqué, car lorsque Oracle a une fonction comme "SUM(TOTAL)", le champ de résultat est créé avec une taille de 0, de sorte que le clientdataset gère le champ comme un champ Integer.