All Packages Class Hierarchy This Package Previous Next Index
Class interbase.interclient.ConnectionStatistics
java.lang.Object
|
+----interbase.interclient.ConnectionStatistics
- public final class ConnectionStatistics
- extends Object
- implements Statistics
InterClient Extension
for future release
Various statistics about database page and record reads and writes
for a connection, accumulated from connection attach time.
- See Also:
- Statistics, ServerStatistics, getStatistics
-
getBackoutCount(String)
- Number of removals of record versions from table for this connection.
InterClient Extension.
-
getDeleteCount(String)
- Number of database record deletes from table for this connection.
InterClient Extension.
-
getDiskReads()
- Number of database page reads from disk since connection was attached.
InterClient Extension.
-
getDiskWrites()
- Number of database page writes to disk since connection was attached.
InterClient Extension.
-
getExpungeCount(String)
- Number of removals of a record and all of its ancestors from table,
for records whose deletions have been committed for this connection.
InterClient Extension.
-
getIndexedReadCount(String)
- Number of table reads done via an index for this connection.
InterClient Extension.
-
getInsertCount(String)
- Number of record inserts into table for this connection.
InterClient Extension.
-
getMemoryReads()
- Number of memory reads from cache since connection was attached.
InterClient Extension.
-
getMemoryWrites()
- Number of memory writes to cache since connection was attached.
InterClient Extension.
-
getPurgeCount(String)
- Number of removals of old versions of fully mature records
from table (records committed, resulting in older ancestor versions
no longer being needed).
InterClient Extension.
-
getSequentialReadCount(String)
- Number of sequential table reads, that is, the number
of sequential row reads done
for this connection.
InterClient Extension.
-
getUpdateCount(String)
- Number of table updates for this connection.
InterClient Extension.
getMemoryReads
public int getMemoryReads() throws SQLException
InterClient Extension
for future release
- Number of memory reads from cache since connection was attached.
- Throws: SQLException
- Not yet implemented.
- See Also:
- getMemoryReads
getMemoryWrites
public int getMemoryWrites() throws SQLException
InterClient Extension
for future release
- Number of memory writes to cache since connection was attached.
- Throws: SQLException
- Not yet implemented.
- See Also:
- getMemoryWrites
getDiskReads
public int getDiskReads() throws SQLException
InterClient Extension
for future release
- Number of database page reads from disk since connection was attached.
- Throws: SQLException
- Not yet implemented.
- See Also:
- getDiskReads
getDiskWrites
public int getDiskWrites() throws SQLException
InterClient Extension
for future release
- Number of database page writes to disk since connection was attached.
- Throws: SQLException
- Not yet implemented.
- See Also:
- getDiskWrites
getBackoutCount
public int getBackoutCount(String table) throws SQLException
InterClient Extension
for future release
- Number of removals of record versions from table for this connection.
- Throws: SQLException
- Not yet implemented.
getDeleteCount
public int getDeleteCount(String table) throws SQLException
InterClient Extension
for future release
- Number of database record deletes from table for this connection.
- Throws: SQLException
- Not yet implemented.
getExpungeCount
public int getExpungeCount(String table) throws SQLException
InterClient Extension
for future release
- Number of removals of a record and all of its ancestors from table,
for records whose deletions have been committed for this connection.
- Throws: SQLException
- Not yet implemented.
getInsertCount
public int getInsertCount(String table) throws SQLException
InterClient Extension
for future release
- Number of record inserts into table for this connection.
- Throws: SQLException
- Not yet implemented.
getPurgeCount
public int getPurgeCount(String table) throws SQLException
InterClient Extension
for future release
- Number of removals of old versions of fully mature records
from table (records committed, resulting in older ancestor versions
no longer being needed).
- Throws: SQLException
- Not yet implemented.
getIndexedReadCount
public int getIndexedReadCount(String table) throws SQLException
InterClient Extension
for future release
- Number of table reads done via an index for this connection.
- Throws: SQLException
- Not yet implemented.
getSequentialReadCount
public int getSequentialReadCount(String table) throws SQLException
InterClient Extension
for future release
- Number of sequential table reads, that is, the number
of sequential row reads done
for this connection.
- Throws: SQLException
- Not yet implemented.
getUpdateCount
public int getUpdateCount(String table) throws SQLException
InterClient Extension
for future release
- Number of table updates for this connection.
- Throws: SQLException
- Not yet implemented.
All Packages Class Hierarchy This Package Previous Next Index