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

Comparing ibx/trunk/fbintf/client/FBMessages.pas (file contents):
Revision 401 by tony, Mon Jan 10 10:13:17 2022 UTC vs.
Revision 402 by tony, Mon Aug 1 10:07:24 2022 UTC

# Line 166 | Line 166 | type
166        ibxeInvalidBatchQuery,
167        ibxeBatchRowBufferOverflow,
168        ibxeBatchBufferSizeTooBig,
169 <      ibxeNoScrollableCursors
169 >      ibxeNoScrollableCursors,
170 >      ibxeUnableTosetaTextType,
171 >      ibxeCantDropAcquiredDB,
172 >      ibxeTransactionNotOwned,
173 >      ibxeIntegerOverflow,
174 >      ibxIntegerUnderflow,
175 >      ibxeScaleCannotBeChanged,
176 >      ibxeStringOverflow
177        );
178  
179   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 284 | Line 291 | resourcestring
291    SBatchRowBufferOverflow = 'Adding Row No. %d - batch buffer size limit (%d bytes) exceeded';
292    SBatchBufferSizeTooBig = 'Requested Batch Buffer Size (%d bytes) exceeds 256MB limit';
293    SNoScrollableCursors = 'Scrollable cursors are not supported';
294 +  SUnableTosetaTextType = 'Param[%d] "%s": Unable to change from a %s to a string type';
295 +  SCantDropAcquiredDB = 'Drop database not allowed by acquired attachment';
296 +  STransactionNotOwned = 'Cannot Commit or Rollback a linked transaction';
297 +  SIntegerOverflow = 'Integer overflow when scaling numeric';
298 +  SIntegerUnderflow = 'Integer underflow when scaling numeric';
299 +  SScaleCannotBeChanged = 'Unable to change numeric field scale';
300 +  SStringOverflow = 'String overflow. String Length %d exceeds permitted maximum (%d)';
301  
302   const
303    IBErrorMessages: array[TIBClientError] of string = (
# Line 377 | Line 391 | const
391      SInvalidBatchQuery,
392      SBatchRowBufferOverflow,
393      SBatchBufferSizeTooBig,
394 <    SNoScrollableCursors
394 >    SNoScrollableCursors,
395 >    SUnableTosetaTextType,
396 >    SCantDropAcquiredDB,
397 >    STransactionNotOwned,
398 >    SIntegerOverflow,
399 >    SIntegerUnderflow,
400 >    SScaleCannotBeChanged,
401 >    SStringOverflow
402    );
403  
404   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines