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

Comparing ibx/trunk/runtime/nongui/IBCustomDataSet.pas (file contents):
Revision 216 by tony, Thu Mar 15 17:21:13 2018 UTC vs.
Revision 241 by tony, Thu Oct 25 13:57:12 2018 UTC

# Line 1158 | Line 1158 | begin
1158         3, {Assume UNICODE_FSS is really UTF8}
1159         4: {Include GB18030 - assuming UTF8 routines work for this codeset}
1160           if DisplayWidth = 0 then
1161 +           {$if not defined(ValidUTF8String)}
1162 +           Result := Utf8EscapeControlChars(TextToSingleLine(Result))
1163 +           {$else}
1164             Result := ValidUTF8String(TextToSingleLine(Result))
1165 +           {$endif}
1166           else
1167           if UTF8Length(Result) > DisplayWidth then {Show truncation with elipses}
1168 +           {$if not defined(ValidUTF8String)}
1169 +           Result := Utf8EscapeControlChars(TextToSingleLine(UTF8Copy(Result,1,DisplayWidth-3))) + '...';
1170 +           {$else}
1171             Result := ValidUTF8String(TextToSingleLine(UTF8Copy(Result,1,DisplayWidth-3))) + '...';
1172 +           {$endif}
1173         end;
1174     end
1175   end;
# Line 1437 | Line 1445 | begin
1445    if FDelayTimerValue = AValue then Exit;
1446    FDelayTimerValue := AValue;
1447    {$IF FPC_FULLVERSION >= 30002}
1448 +  if (AValue > 0) and not IsMultiThread then
1449 +    IBError(ibxeMultiThreadRequired,['TIBQuery/TIBDataset MasterDetailDelay']);
1450    FTimer.Interval := FDelayTimerValue;
1451    {$IFEND}
1452   end;
# Line 1461 | Line 1471 | begin
1471      if FDelayTimerValue > 0 then
1472      with FTimer do
1473      begin
1474 +      CheckSynchronize; {Ensure not waiting on Synchronize}
1475        if Enabled then
1476        begin
1477          StopTimer;
# Line 5095 | Line 5106 | end;
5106   function TIBDataSetUpdateObject.GetRowsAffected(
5107    var SelectCount, InsertCount, UpdateCount, DeleteCount: integer): boolean;
5108   begin
5109 +  Result := true;
5110    SelectCount := 0;
5111    InsertCount := 0;
5112    UpdateCount := 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines