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

Comparing ibx/trunk/runtime/IBMessages.pas (file contents):
Revision 310 by tony, Fri Apr 17 21:50:43 2020 UTC vs.
Revision 311 by tony, Mon Aug 24 09:32:58 2020 UTC

# Line 168 | Line 168 | type
168        ibxeODSVersionRequired,
169        ibxErrorParsing,
170        ibxeParameterNameNotFound,
171 <      ibxeListFieldNotFound
171 >      ibxeListFieldNotFound,
172 >      ibxeDBBufferTooSmall
173        );
174  
175   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;
# Line 276 | Line 277 | resourcestring
277    STPBConstantUnknownEx = 'TPB Constant (%s) is unknown';
278    SSV5APIError = 'SV5 API API Error - %s';
279    SThreadFailed = '%s Thread failed with Exception: %s';
280 <  SFieldSizeError = 'Field %s is too small to receive the data';
280 >  SFieldSizeError = 'Field %s is too small (%d bytes) to receive the data (%d bytes)';
281    SNoLoginDialog = 'Default Login Dlalog not found. Have you included ibexpress ' +
282                     'in your program uses list?';
283    SInfoBufferIndexError = 'Info Buffer Index Out of Range (%d)';
# Line 302 | Line 303 | resourcestring
303    SErrorParsing = 'Error parsing SQL Statement at clause starting with %s';
304    SParameterNameNotFound = 'Parameter Name (%s) not found';
305    SListFieldNotFound = 'ListField Name is not a valid dataset column name (%s)';
306 +  SDBBufferTooSmall = 'Dataset buffer is too small (%d bytes) to receive the data from Field %s (%d bytes)';
307  
308   const
309    IBErrorMessages: array[TIBClientError] of string = (
# Line 397 | Line 399 | const
399      SODSVersionRequired,
400      SErrorParsing,
401      SParameterNameNotFound,
402 <    SListFieldNotFound
402 >    SListFieldNotFound,
403 >    SDBBufferTooSmall
404    );
405  
406   function GetErrorMessage(ErrMess: TIBClientError): AnsiString;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines