Database Operation Counts

From InterBase

Go Up to Requesting Information about an Attachment


Several information properties are provided for determining the number of various database operations performed by the currently attached calling program. These values are calculated on a per-table basis.

The following table describes the properties that return count values for operations on the database:

TIBDatabaseInfo database operation counts properties
Property Returns

BackoutCount

The number of removals of a version of a record as a long integer

DeleteCount

The number of database deleted since the database was last attached; returned as long integer

ExpungeCount

The number of removals of a record and all of its ancestors as a long integer

InsertCount

The number of inserts into the database since the database was last attached; returned as a long integer

PurgeCount

The number of removals of fully mature records from the database; returned as a long integer

ReadIdxCount

The number of sequential database reads done via an index since the database was last attached; returned as a long integer

ReadSeqCount

The number of sequential database reads done on each table since the database was last attached; returned as a long integer

UpdateCount

The number of updates since the database was last attached; returned as a long integer

Advance To: