DbBtreeStat.java
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: DbBtreeStat.java,v 11.5 2000/05/04 02:54:55 dda Exp $
  8.  */
  9. package com.sleepycat.db;
  10. /*
  11.  * This is filled in and returned by the
  12.  * Db.stat() method.
  13.  */
  14. public class DbBtreeStat
  15. {
  16.     public int bt_magic;                // Magic number.
  17.     public int bt_version;              // Version number.
  18.     public int bt_metaflags;            // Meta-data flags.
  19.     public int bt_nkeys;                // Number of unique keys.
  20.     public int bt_ndata;                // Number of data items.
  21.     public int bt_pagesize;             // Page size.
  22.     public int bt_maxkey;               // Maxkey value.
  23.     public int bt_minkey;               // Minkey value.
  24.     public int bt_re_len;               // Fixed-length record length.
  25.     public int bt_re_pad;               // Fixed-length record pad.
  26.     public int bt_levels;               // Tree levels.
  27.     public int bt_int_pg;               // Internal pages.
  28.     public int bt_leaf_pg;              // Leaf pages.
  29.     public int bt_dup_pg;               // Duplicate pages.
  30.     public int bt_over_pg;              // Overflow pages.
  31.     public int bt_free;                 // Pages on the free list.
  32.     public int bt_int_pgfree;           // Bytes free in internal pages.
  33.     public int bt_leaf_pgfree;          // Bytes free in leaf pages.
  34.     public int bt_dup_pgfree;           // Bytes free in duplicate pages.
  35.     public int bt_over_pgfree;          // Bytes free in overflow pages.
  36. }
  37. // end of DbBtreeStat.java