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 45 by tony, Tue Dec 6 10:33:46 2016 UTC vs.
Revision 47 by tony, Mon Jan 9 15:31:51 2017 UTC

# Line 236 | Line 236 | type
236        ibxeParamBufferOverflow,
237        ibxeInvalidParamCount,
238        ibxeInvalidVariantType,
239 <      ibxeServiceRunning
239 >      ibxeServiceRunning,
240 >      ibxeUniqueRelationReqd
241        );
242  
243   function GetErrorMessage(ErrMess: TIBClientError): string;
# Line 261 | Line 262 | resourcestring
262    SDatabaseFilter = 'Database Files (*.fdb; *.gdb)|*.gdb; *.fdb|All files (*.*)|*.*';
263    STrue = 'true';
264    SFalse = 'false';
265 +  SArray = '(array)';
266 +  SBlob = '(blob)';
267  
268   implementation
269  
# Line 405 | Line 408 | resourcestring
408    SPBIndexError = 'DPB Index out of range (%d)';
409    SPBParamTypeError = 'Invalid Request for DPB Param Type';
410    SDuplicateParamName = 'Blob or array parameter name must be unique (%s)';
411 <  SInvalidArrayDimensions = 'Invalid number of array dimensions {%d)';
411 >  SInvalidArrayDimensions = 'Invalid number of array dimensions (%d)';
412    SNotAMultiDatabaseTransaction = 'This is not a multi-database transaction';
413    SAttachmentListIndexError = 'Attachment List index out of range (%d)';
414    SNotAnArray = 'Table Column must be an array';
# Line 429 | Line 432 | resourcestring
432    SInvalidParamCount = 'Invalid Parameter Count. %d expected, %d found';
433    SInvalidVariantType = 'Invalid variant type';
434    SServiceRunning = 'Cannot start a new service while an existing service is running';
435 +  SUniqueRelationReqd = 'All Output Fields must derived from the same table';
436  
437   const
438    IBErrorMessages: array[TIBClientError] of string = (
# Line 590 | Line 594 | const
594      SParamBufferOverflow,
595      SInvalidParamCount,
596      SInvalidVariantType,
597 <    SServiceRunning
597 >    SServiceRunning,
598 >    SUniqueRelationReqd
599    );
600  
601   function GetErrorMessage(ErrMess: TIBClientError): string;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines