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

Comparing:
ibx/trunk/fbintf/client/FBMessages.pas (file contents), Revision 345 by tony, Mon Aug 23 14:22:29 2021 UTC vs.
ibx/branches/udr/client/FBMessages.pas (file contents), Revision 379 by tony, Mon Jan 10 10:08:03 2022 UTC

# Line 165 | Line 165 | type
165        ibxeInBatchMode,
166        ibxeInvalidBatchQuery,
167        ibxeBatchRowBufferOverflow,
168 <      ibxeBatchBufferSizeTooBig
168 >      ibxeBatchBufferSizeTooBig,
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 282 | Line 290 | resourcestring
290    SInvalidBatchQuery = 'This query type (%s) cannot be batched';
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 374 | Line 390 | const
390      SInBatchMode,
391      SInvalidBatchQuery,
392      SBatchRowBufferOverflow,
393 <    SBatchBufferSizeTooBig
393 >    SBatchBufferSizeTooBig,
394 >    SNoScrollableCursors,
395 >    SUnableTosetaTextType,
396 >    SCantDropAcquiredDB,
397 >    STransactionNotOwned,
398 >    SIntegerOverflow,
399 >    SIntegerUnderflow,
400 >    SScaleCannotBeChanged,
401 >    SStringOverflow
402    );
403  
404   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Comparing:
ibx/trunk/fbintf/client/FBMessages.pas (property svn:eol-style), Revision 345 by tony, Mon Aug 23 14:22:29 2021 UTC vs.
ibx/branches/udr/client/FBMessages.pas (property svn:eol-style), Revision 379 by tony, Mon Jan 10 10:08:03 2022 UTC

# Line 0 | Line 1
1 + native

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines