Oracle
 sql >> Datenbank >  >> RDS >> Oracle

ClientDataSet TBCDFieldrundung

Ich habe das Problem mit einer anderen Lösung gelöst.

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;

das Problem ist ((FieldDefs[intCont].Size =0) und (FieldDefs[intCont].DataType =ftBCD)). Wenn ClientDataSet erstellt wird, wird das Feld abgeschnitten, denn wenn Oracle eine Funktion wie "SUM(TOTAL)" hat, wird das Ergebnisfeld mit der Größe 0 erstellt, sodass das ClientDataSet das Feld als Integer-Feld behandelt.