ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/trunk/runtime/IBCustomDataSet.pas
(Generate patch)

Comparing ibx/trunk/runtime/IBCustomDataSet.pas (file contents):
Revision 105 by tony, Thu Jan 18 14:37:32 2018 UTC vs.
Revision 118 by tony, Mon Jan 22 13:58:14 2018 UTC

# Line 27 | Line 27
27   {    IBX For Lazarus (Firebird Express)                                  }
28   {    Contributor: Tony Whyman, MWA Software http://www.mwasoftware.co.uk }
29   {    Portions created by MWA Software are copyright McCallum Whyman      }
30 < {    Associates Ltd 2011 - 2015                                                }
30 > {    Associates Ltd 2011 - 2015                                          }
31   {                                                                        }
32   {************************************************************************}
33  
# Line 76 | Line 76 | type
76      function GetSQL(UpdateKind: TUpdateKind): TStrings; virtual; abstract;
77      procedure InternalSetParams(Params: ISQLParams; buff: PChar); overload;
78      procedure InternalSetParams(Query: TIBSQL; buff: PChar); overload;
79 <    procedure UpdateRecordFromQuery(QryResults: IResults; Buffer: PChar);
79 >    procedure UpdateRecordFromQuery(UpdateKind: TUpdateKind; QryResults: IResults; Buffer: PChar);
80      property DataSet: TIBCustomDataSet read GetDataSet write SetDataSet;
81    public
82      constructor Create(AOwner: TComponent); override;
# Line 371 | Line 371 | type
371  
372    TOnValidatePost = procedure (Sender: TObject; var CancelPost: boolean) of object;
373  
374 +  TOnDeleteReturning = procedure (Sender: TObject; QryResults: IResults) of object;
375 +
376    TIBCustomDataSet = class(TDataset)
377    private
378      FAllowAutoActivateTransaction: Boolean;
# Line 403 | Line 405 | type
405      FDeletedRecords: Long;
406      FModelBuffer,
407      FOldBuffer: PChar;
408 +    FOnDeleteReturning: TOnDeleteReturning;
409      FOnValidatePost: TOnValidatePost;
410      FOpen: Boolean;
411      FInternalPrepared: Boolean;
# Line 441 | Line 444 | type
444      FInTransactionEnd: boolean;
445      FIBLinks: TList;
446      FFieldColumns: PFieldColumns;
447 +    FBufferUpdatedOnQryReturn: boolean;
448      procedure ColumnDataToBuffer(QryResults: IResults; ColumnIndex,
449        FieldIndex: integer; Buffer: PChar);
450      procedure InitModelBuffer(Qry: TIBSQL; Buffer: PChar);
# Line 465 | Line 469 | type
469      procedure DoBeforeTransactionEnd(Sender: TObject; Action: TTransactionAction);
470      procedure DoAfterTransactionEnd(Sender: TObject);
471      procedure DoTransactionFree(Sender: TObject);
472 +    procedure DoDeleteReturning(QryResults: IResults);
473      procedure FetchCurrentRecordToBuffer(Qry: TIBSQL; RecordNumber: Integer;
474                                           Buffer: PChar);
475      function GetDatabase: TIBDatabase;
# Line 685 | Line 690 | type
690      procedure Post; override;
691      function ParamByName(ParamName: String): ISQLParam;
692      property ArrayFieldCount: integer read FArrayFieldCount;
693 +    property DatabaseInfo: TIBDatabaseInfo read FDatabaseInfo;
694      property UpdateObject: TIBDataSetUpdateObject read FUpdateObject write SetUpdateObject;
695      property UpdatesPending: Boolean read FUpdatesPending;
696      property UpdateRecordTypes: TIBUpdateRecordTypes read FUpdateRecordTypes
# Line 729 | Line 735 | type
735                                                   write FOnUpdateError;
736      property OnUpdateRecord: TIBUpdateRecordEvent read FOnUpdateRecord
737                                                     write FOnUpdateRecord;
738 +    property OnDeleteReturning: TOnDeleteReturning read FOnDeleteReturning
739 +                                                   write FOnDeleteReturning;
740    end;
741  
742    TIBParserDataSet = class(TIBCustomDataSet)
# Line 815 | Line 823 | type
823      property OnNewRecord;
824      property OnPostError;
825      property OnValidatePost;
826 +    property OnDeleteReturning;
827    end;
828  
829    { TIBDSBlobStream }
# Line 1964 | Line 1973 | begin
1973      FTransactionFree(Sender);
1974   end;
1975  
1976 + procedure TIBCustomDataSet.DoDeleteReturning(QryResults: IResults);
1977 + begin
1978 +  if assigned(FOnDeleteReturning) then
1979 +     OnDeleteReturning(self,QryResults);
1980 + end;
1981 +
1982   procedure TIBCustomDataSet.InitModelBuffer(Qry: TIBSQL; Buffer: PChar);
1983   var i, j: Integer;
1984      FieldsLoaded: integer;
# Line 2063 | Line 2078 | begin
2078    begin
2079      j := GetFieldPosition(QryResults[i].GetAliasName);
2080      if j > 0 then
2081 +    begin
2082        ColumnDataToBuffer(QryResults,i,j,Buffer);
2083 +      FBufferUpdatedOnQryReturn := true;
2084 +    end;
2085    end;
2086   end;
2087  
# Line 2074 | Line 2092 | procedure TIBCustomDataSet.ColumnDataToB
2092                 ColumnIndex, FieldIndex: integer; Buffer: PChar);
2093   var
2094    LocalData: PByte;
2095 <  LocalDate, LocalDouble: Double;
2095 >  LocalDate: TDateTime;
2096 >  LocalDouble: Double;
2097    LocalInt: Integer;
2098    LocalBool: wordBool;
2099    LocalInt64: Int64;
# Line 2089 | Line 2108 | begin
2108      begin
2109        ColData := QryResults[ColumnIndex];
2110        case fdDataType of  {Get Formatted data for column types that need formatting}
2111 +        SQL_TYPE_DATE,
2112 +        SQL_TYPE_TIME,
2113          SQL_TIMESTAMP:
2114          begin
2115 <          LocalDate := TimeStampToMSecs(DateTimeToTimeStamp(ColData.AsDateTime));
2115 >          {This is an IBX native format and not the TDataset approach. See also GetFieldData}
2116 >          LocalDate := ColData.AsDateTime;
2117            LocalData := PByte(@LocalDate);
2118          end;
2097        SQL_TYPE_DATE:
2098        begin
2099          LocalInt := DateTimeToTimeStamp(ColData.AsDateTime).Date;
2100          LocalData := PByte(@LocalInt);
2101        end;
2102        SQL_TYPE_TIME:
2103        begin
2104          LocalInt := DateTimeToTimeStamp(ColData.AsDateTime).Time;
2105          LocalData := PByte(@LocalInt);
2106        end;
2119          SQL_SHORT, SQL_LONG:
2120          begin
2121            if (fdDataScale = 0) then
# Line 2322 | Line 2334 | begin
2334    begin
2335      SetInternalSQLParams(FQDelete.Params, Buff);
2336      FQDelete.ExecQuery;
2337 +    if (FQDelete.FieldCount > 0)  then
2338 +      DoDeleteReturning(FQDelete.Current);
2339    end;
2340    with PRecordData(Buff)^ do
2341    begin
# Line 2459 | Line 2473 | begin
2473        end;
2474        Inc(arr);
2475      end;
2476 +  FBufferUpdatedOnQryReturn := false;
2477    if Assigned(FUpdateObject) then
2478    begin
2479      if (Qry = FQDelete) then
# Line 2471 | Line 2486 | begin
2486    else begin
2487      SetInternalSQLParams(Qry.Params, Buff);
2488      Qry.ExecQuery;
2489 +    if Qry.FieldCount > 0 then {Has RETURNING Clause}
2490 +      UpdateRecordFromQuery(Qry.Current,Buff);
2491    end;
2475  if Qry.FieldCount > 0 then {Has RETURNING Clause}
2476    UpdateRecordFromQuery(Qry.Current,Buff);
2492    PRecordData(Buff)^.rdUpdateStatus := usUnmodified;
2493    PRecordData(Buff)^.rdCachedUpdateStatus := cusUnmodified;
2494    SetModified(False);
2495    WriteRecordCache(PRecordData(Buff)^.rdRecordNumber, Buff);
2496 <  if (FForcedRefresh or FNeedsRefresh) and CanRefresh then
2496 >  if (FForcedRefresh or (FNeedsRefresh and not FBufferUpdatedOnQryReturn)) and CanRefresh then
2497      InternalRefreshRow;
2498   end;
2499  
# Line 2714 | Line 2729 | end;
2729  
2730   procedure TIBCustomDataSet.SetDatabase(Value: TIBDatabase);
2731   begin
2732 <  if (FBase.Database <> Value) then
2732 >  if (csLoading in ComponentState) or (FBase.Database <> Value) then
2733    begin
2734      CheckDatasetClosed;
2735      InternalUnPrepare;
# Line 2829 | Line 2844 | begin
2844              end;
2845              SQL_BLOB, SQL_ARRAY, SQL_QUAD:
2846                Param.AsQuad := PISC_QUAD(data)^;
2847 <            SQL_TYPE_DATE:
2848 <            begin
2834 <              ts.Date := PInt(data)^;
2835 <              ts.Time := 0;
2836 <              Param.AsDate := TimeStampToDateTime(ts);
2837 <            end;
2838 <            SQL_TYPE_TIME:
2839 <            begin
2840 <              ts.Date := 0;
2841 <              ts.Time := PInt(data)^;
2842 <              Param.AsTime := TimeStampToDateTime(ts);
2843 <            end;
2847 >            SQL_TYPE_DATE,
2848 >            SQL_TYPE_TIME,
2849              SQL_TIMESTAMP:
2850 <              Param.AsDateTime :=
2851 <                       TimeStampToDateTime(MSecsToTimeStamp(trunc(PDouble(data)^)));
2850 >            {This is an IBX native format and not the TDataset approach. See also SetFieldData}
2851 >              Param.AsDateTime := PDateTime(data)^;
2852              SQL_BOOLEAN:
2853                Param.AsBoolean := PWordBool(data)^;
2854            end;
# Line 4170 | Line 4175 | begin
4175      for i := 0 to SQLParams.GetCount - 1 do
4176      begin
4177        cur_field := DataSource.DataSet.FindField(SQLParams[i].Name);
4178 <      cur_param := SQLParams[i];
4179 <      if (cur_field <> nil) then begin
4178 >      if (cur_field <> nil) then
4179 >      begin
4180 >        cur_param := SQLParams[i];
4181          if (cur_field.IsNull) then
4182            cur_param.IsNull := True
4183 <        else case cur_field.DataType of
4183 >        else
4184 >        case cur_field.DataType of
4185            ftString:
4186              cur_param.AsString := cur_field.AsString;
4187            ftBoolean:
# Line 4184 | Line 4191 | begin
4191            ftInteger:
4192              cur_param.AsLong := cur_field.AsInteger;
4193            ftLargeInt:
4194 <            cur_param.AsInt64 := TLargeIntField(cur_field).AsLargeInt;
4194 >            cur_param.AsInt64 := cur_field.AsLargeInt;
4195            ftFloat, ftCurrency:
4196             cur_param.AsDouble := cur_field.AsFloat;
4197            ftBCD:
# Line 4938 | Line 4945 | end;
4945   function TIBCustomDataSet.GetFieldData(Field: TField; Buffer: Pointer;
4946    NativeFormat: Boolean): Boolean;
4947   begin
4948 <  if (Field.DataType = ftBCD) and not NativeFormat then
4948 >  {These datatypes use IBX conventions and not TDataset conventions}
4949 >  if (Field.DataType in [ftBCD,ftDateTime,ftDate,ftTime]) and not NativeFormat then
4950      Result := InternalGetFieldData(Field, Buffer)
4951    else
4952      Result := inherited GetFieldData(Field, Buffer, NativeFormat);
# Line 4964 | Line 4972 | end;
4972   procedure TIBCustomDataSet.SetFieldData(Field: TField; Buffer: Pointer;
4973    NativeFormat: Boolean);
4974   begin
4975 <  if (not NativeFormat) and (Field.DataType = ftBCD) then
4975 >  {These datatypes use IBX conventions and not TDataset conventions}
4976 >  if (not NativeFormat) and (Field.DataType in [ftBCD,ftDateTime,ftDate,ftTime]) then
4977      InternalSetfieldData(Field, Buffer)
4978    else
4979      inherited SetFieldData(Field, buffer, NativeFormat);
# Line 5001 | Line 5010 | begin
5010    InternalSetParams(Query.Params,buff);
5011   end;
5012  
5013 < procedure TIBDataSetUpdateObject.UpdateRecordFromQuery(QryResults: IResults;
5014 <  Buffer: PChar);
5013 > procedure TIBDataSetUpdateObject.UpdateRecordFromQuery(UpdateKind: TUpdateKind;
5014 >  QryResults: IResults; Buffer: PChar);
5015   begin
5016    if not Assigned(DataSet) then Exit;
5017 <  DataSet.UpdateRecordFromQuery(QryResults, Buffer);
5017 >  case UpdateKind of
5018 >  ukModify, ukInsert:
5019 >    DataSet.UpdateRecordFromQuery(QryResults, Buffer);
5020 >  ukDelete:
5021 >    DataSet.DoDeleteReturning(QryResults);
5022 >  end;
5023   end;
5024  
5025   function TIBDSBlobStream.GetSize: Int64;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines