84 |
|
function GetReadIdxCount: TStringList; |
85 |
|
function GetReadSeqCount: TStringList; |
86 |
|
function GetUpdateCount: TStringList; |
87 |
< |
function GetOperationCounts(DBInfoCommand: Integer; FOperation: TStringList): TStringList; |
87 |
> |
function GetOperationCounts(DBInfoCommand: Integer; var FOperation: TStringList): TStringList; |
88 |
|
function GetReadOnly: Long; |
89 |
|
function GetStringDatabaseInfo(DatabaseInfoCommand: Integer): String; |
90 |
|
function GetDBSQLDialect: Long; |
250 |
|
|
251 |
|
function TIBDatabaseInfo.GetODSMinorVersion: Long; |
252 |
|
begin |
253 |
< |
result := GetLongDatabaseInfo(isc_info_ods_minor_version); |
253 |
> |
CheckDatabase; |
254 |
> |
Result := Database.Attachment.GetODSMinorVersion; |
255 |
|
end; |
256 |
|
|
257 |
|
function TIBDatabaseInfo.GetODSMajorVersion: Long; |
258 |
|
begin |
259 |
< |
result := GetLongDatabaseInfo(isc_info_ods_version); |
259 |
> |
CheckDatabase; |
260 |
> |
Result := Database.Attachment.GetODSMajorVersion; |
261 |
|
end; |
262 |
|
|
263 |
|
function TIBDatabaseInfo.GetPageSize: Long; |
333 |
|
result := GetLongDatabaseInfo(isc_info_writes); |
334 |
|
end; |
335 |
|
|
336 |
< |
function TIBDatabaseInfo.GetOperationCounts(DBInfoCommand: Integer; FOperation: TStringList): TStringList; |
336 |
> |
function TIBDatabaseInfo.GetOperationCounts(DBInfoCommand: Integer; |
337 |
> |
var FOperation: TStringList): TStringList; |
338 |
|
var opCounts: TDBOperationCounts; |
339 |
|
i: integer; |
340 |
|
begin |