121 |
|
FPrefix: AnsiString; |
122 |
|
protected |
123 |
|
FOwner: TFBClientAPI; |
124 |
+ |
function GetIBMessage: Ansistring; virtual; abstract; |
125 |
+ |
function GetSQLMessage: Ansistring; |
126 |
|
public |
127 |
|
constructor Create(aOwner: TFBClientAPI; prefix: AnsiString=''); |
128 |
|
function StatusVector: PStatusVector; virtual; abstract; |
196 |
|
|
197 |
|
public |
198 |
|
{Taken from legacy API} |
197 |
– |
isc_sqlcode: Tisc_sqlcode; |
199 |
|
isc_sql_interprete: Tisc_sql_interprete; |
200 |
< |
isc_event_counts: Tisc_event_counts; |
200 |
< |
isc_event_block: Tisc_event_block; |
201 |
< |
isc_free: Tisc_free; |
202 |
< |
isc_portable_integer: Tisc_portable_integer; |
200 |
> |
isc_sqlcode: Tisc_sqlcode; |
201 |
|
|
202 |
|
constructor Create(aFBLibrary: TFBLibrary); |
203 |
|
procedure IBAlloc(var P; OldSize, NewSize: Integer); |
220 |
|
property LocalTimeOffset: integer read FLocalTimeOffset; |
221 |
|
public |
222 |
|
{Encode/Decode} |
223 |
< |
procedure EncodeInteger(aValue: integer; len: integer; buffer: PByte); |
223 |
> |
procedure EncodeInteger(aValue: int64; len: integer; buffer: PByte); |
224 |
|
function DecodeInteger(bufptr: PByte; len: short): int64; |
225 |
|
procedure SQLEncodeDate(aDate: TDateTime; bufptr: PByte); virtual; abstract; |
226 |
|
function SQLDecodeDate(byfptr: PByte): TDateTime; virtual; abstract; |
228 |
|
function SQLDecodeTime(bufptr: PByte): TDateTime; virtual; abstract; |
229 |
|
procedure SQLEncodeDateTime(aDateTime: TDateTime; bufptr: PByte); virtual; abstract; |
230 |
|
function SQLDecodeDateTime(bufptr: PByte): TDateTime; virtual; abstract; |
233 |
– |
function FormatStatus(Status: TFBStatus): AnsiString; virtual; abstract; |
231 |
|
function Int128ToStr(bufptr: PByte; scale: integer): AnsiString; virtual; |
232 |
|
procedure StrToInt128(scale: integer; aValue: AnsiString; bufptr: PByte); |
233 |
|
virtual; |
242 |
|
function GetImplementationVersion: AnsiString; |
243 |
|
function GetClientMajor: integer; virtual; abstract; |
244 |
|
function GetClientMinor: integer; virtual; abstract; |
245 |
< |
end; |
245 |
> |
end; |
246 |
> |
|
247 |
> |
IJournallingHook = interface |
248 |
> |
['{7d3e45e0-3628-416a-9e22-c20474825031}'] |
249 |
> |
procedure TransactionStart(Tr: ITransaction); |
250 |
> |
function TransactionEnd(TransactionID: integer; Action: TTransactionAction): boolean; |
251 |
> |
procedure TransactionRetained(Tr: ITransaction; OldTransactionID: integer; Action: TTransactionAction); |
252 |
> |
procedure ExecQuery(Stmt: IStatement); |
253 |
> |
end; |
254 |
|
|
255 |
|
implementation |
256 |
|
|
408 |
|
raise EIBInterBaseError.Create(GetStatus); |
409 |
|
end; |
410 |
|
|
411 |
< |
procedure TFBClientAPI.EncodeInteger(aValue: integer; len: integer; buffer: PByte); |
411 |
> |
procedure TFBClientAPI.EncodeInteger(aValue: int64; len: integer; buffer: PByte); |
412 |
|
begin |
413 |
|
while len > 0 do |
414 |
|
begin |
419 |
|
end; |
420 |
|
end; |
421 |
|
|
422 |
+ |
(* |
423 |
+ |
DecodeInteger is Translated from |
424 |
+ |
|
425 |
+ |
SINT64 API_ROUTINE isc_portable_integer(const UCHAR* ptr, SSHORT length) |
426 |
+ |
if (!ptr || length <= 0 || length > 8) |
427 |
+ |
return 0; |
428 |
+ |
|
429 |
+ |
SINT64 value = 0; |
430 |
+ |
int shift = 0; |
431 |
+ |
|
432 |
+ |
while (--length > 0) |
433 |
+ |
{ |
434 |
+ |
value += ((SINT64) *ptr++) << shift; |
435 |
+ |
shift += 8; |
436 |
+ |
} |
437 |
+ |
|
438 |
+ |
value += ((SINT64)(SCHAR) *ptr) << shift; |
439 |
+ |
|
440 |
+ |
return value; |
441 |
+ |
*) |
442 |
+ |
|
443 |
|
function TFBClientAPI.DecodeInteger(bufptr: PByte; len: short): int64; |
444 |
+ |
var shift: integer; |
445 |
|
begin |
446 |
< |
Result := isc_portable_integer(bufptr,len); |
446 |
> |
Result := 0; |
447 |
> |
if (BufPtr = nil) or (len <= 0) or (len > 8) then |
448 |
> |
Exit; |
449 |
> |
|
450 |
> |
shift := 0; |
451 |
> |
dec(len); |
452 |
> |
while len > 0 do |
453 |
> |
begin |
454 |
> |
Result := Result + (int64(bufptr^) shl shift); |
455 |
> |
Inc(bufptr); |
456 |
> |
shift := shift + 8; |
457 |
> |
dec(len); |
458 |
> |
end; |
459 |
> |
Result := Result + (int64(bufptr^) shl shift); |
460 |
|
end; |
461 |
|
|
462 |
|
function TFBClientAPI.Int128ToStr(bufptr: PByte; scale: integer): AnsiString; |
505 |
|
end; |
506 |
|
|
507 |
|
{$IFDEF UNIX} |
508 |
+ |
|
509 |
|
procedure TFBClientAPI.GetTZDataSettings; |
510 |
|
var S: TStringList; |
511 |
|
begin |
512 |
|
FLocalTimeOffset := GetLocalTimeOffset; |
513 |
< |
FLocalTimeZoneName := strpas(tzname[tzdaylight]); |
513 |
> |
{$if declared(Gettzname)} |
514 |
> |
FLocalTimeZoneName := Gettzname(tzdaylight); |
515 |
> |
{$else} |
516 |
> |
FLocalTimeZoneName := tzname[tzdaylight]; |
517 |
> |
{$ifend} |
518 |
|
FIsDaylightSavingsTime := tzdaylight; |
519 |
|
if FileExists(DefaultTimeZoneFile) then |
520 |
|
begin |
600 |
|
begin |
601 |
|
isc_sqlcode := GetProcAddr('isc_sqlcode'); {do not localize} |
602 |
|
isc_sql_interprete := GetProcAddr('isc_sql_interprete'); {do not localize} |
558 |
– |
isc_event_counts := GetProcAddr('isc_event_counts'); {do not localize} |
559 |
– |
isc_event_block := GetProcAddr('isc_event_block'); {do not localize} |
560 |
– |
isc_free := GetProcAddr('isc_free'); {do not localize} |
561 |
– |
isc_portable_integer := GetProcAddr('isc_portable_integer'); {do not localize} |
603 |
|
fb_shutdown := GetProcAddr('fb_shutdown'); {do not localize} |
604 |
< |
Result := assigned(isc_free); |
604 |
> |
Result := true; {don't case if these fail to load} |
605 |
|
end; |
606 |
|
|
607 |
|
procedure TFBClientAPI.FBShutdown; |
612 |
|
|
613 |
|
{ TFBStatus } |
614 |
|
|
615 |
+ |
function TFBStatus.GetSQLMessage: Ansistring; |
616 |
+ |
var local_buffer: array[0..IBHugeLocalBufferLength - 1] of AnsiChar; |
617 |
+ |
begin |
618 |
+ |
Result := ''; |
619 |
+ |
if (FOwner <> nil) and assigned(FOwner.isc_sql_interprete) then |
620 |
+ |
begin |
621 |
+ |
FOwner.isc_sql_interprete(Getsqlcode, local_buffer, sizeof(local_buffer)); |
622 |
+ |
Result := strpas(local_buffer); |
623 |
+ |
end; |
624 |
+ |
end; |
625 |
+ |
|
626 |
|
constructor TFBStatus.Create(aOwner: TFBClientAPI; prefix: AnsiString); |
627 |
|
begin |
628 |
|
inherited Create; |
638 |
|
|
639 |
|
function TFBStatus.Getsqlcode: TStatusCode; |
640 |
|
begin |
641 |
< |
with FOwner do |
642 |
< |
Result := isc_sqlcode(PISC_STATUS(StatusVector)); |
641 |
> |
if (FOwner <> nil) and assigned(FOwner.isc_sqlcode) then |
642 |
> |
Result := FOwner.isc_sqlcode(PISC_STATUS(StatusVector)) |
643 |
> |
else |
644 |
> |
Result := -999; {generic SQL Code} |
645 |
|
end; |
646 |
|
|
647 |
|
function TFBStatus.GetMessage: AnsiString; |
648 |
< |
var local_buffer: array[0..IBHugeLocalBufferLength - 1] of AnsiChar; |
595 |
< |
IBDataBaseErrorMessages: TIBDataBaseErrorMessages; |
596 |
< |
sqlcode: Long; |
648 |
> |
var IBDataBaseErrorMessages: TIBDataBaseErrorMessages; |
649 |
|
begin |
650 |
|
Result := FPrefix; |
651 |
|
IBDataBaseErrorMessages := FIBDataBaseErrorMessages; |
600 |
– |
sqlcode := Getsqlcode; |
652 |
|
if (ShowSQLCode in IBDataBaseErrorMessages) then |
653 |
< |
Result := Result + 'SQLCODE: ' + IntToStr(sqlcode); {do not localize} |
653 |
> |
Result := Result + 'SQLCODE: ' + IntToStr(Getsqlcode); {do not localize} |
654 |
|
|
655 |
< |
if (ShowSQLMessage in IBDataBaseErrorMessages) then |
655 |
> |
if [ShowSQLMessage, ShowIBMessage]*IBDataBaseErrorMessages <> [] then |
656 |
|
begin |
606 |
– |
with FOwner do |
607 |
– |
isc_sql_interprete(sqlcode, local_buffer, sizeof(local_buffer)); |
657 |
|
if (ShowSQLCode in FIBDataBaseErrorMessages) then |
658 |
|
Result := Result + LineEnding; |
659 |
< |
Result := Result + 'Engine Code: ' + IntToStr(GetIBErrorCode) + ' ' + strpas(local_buffer); |
659 |
> |
Result := Result + 'Engine Code: ' + IntToStr(GetIBErrorCode) + ' '; |
660 |
|
end; |
661 |
|
|
662 |
+ |
if (ShowSQLMessage in IBDataBaseErrorMessages) then |
663 |
+ |
Result := Result + GetSQLMessage; |
664 |
+ |
|
665 |
|
if (ShowIBMessage in IBDataBaseErrorMessages) then |
666 |
|
begin |
667 |
< |
if (ShowSQLCode in IBDataBaseErrorMessages) or |
616 |
< |
(ShowSQLMessage in IBDataBaseErrorMessages) then |
667 |
> |
if ShowSQLMessage in IBDataBaseErrorMessages then |
668 |
|
Result := Result + LineEnding; |
669 |
< |
Result := Result + FOwner.FormatStatus(self); |
669 |
> |
Result := Result + GetIBMessage; |
670 |
|
end; |
671 |
|
if (Result <> '') and (Result[Length(Result)] = '.') then |
672 |
|
Delete(Result, Length(Result), 1); |