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

Method Index

 o getBackoutCount(String)
Number of removals of record versions from table for this connection. InterClient Extension.
 o getDeleteCount(String)
Number of database record deletes from table for this connection. InterClient Extension.
 o getDiskReads()
Number of database page reads from disk since connection was attached. InterClient Extension.
 o getDiskWrites()
Number of database page writes to disk since connection was attached. InterClient Extension.
 o 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.
 o getIndexedReadCount(String)
Number of table reads done via an index for this connection. InterClient Extension.
 o getInsertCount(String)
Number of record inserts into table for this connection. InterClient Extension.
 o getMemoryReads()
Number of memory reads from cache since connection was attached. InterClient Extension.
 o getMemoryWrites()
Number of memory writes to cache since connection was attached. InterClient Extension.
 o 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.
 o getSequentialReadCount(String)
Number of sequential table reads, that is, the number of sequential row reads done for this connection. InterClient Extension.
 o getUpdateCount(String)
Number of table updates for this connection. InterClient Extension.

Methods

 o 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
 o 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
 o 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
 o 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
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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.
 o 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