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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  *
  7.  * $Id: DbQueueStat.java,v 11.5 2000/11/07 18:45:27 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 DbQueueStat
  15. {
  16.     public int qs_magic; // Magic number.
  17.     public int qs_version; // Version number.
  18.     public int qs_metaflags; // Metadata flags.
  19.     public int qs_nkeys; // Number of unique keys.
  20.     public int qs_ndata; // Number of data items.
  21.     public int qs_pagesize; // Page size.
  22.     public int qs_pages; // Data pages.
  23.     public int qs_re_len; // Fixed-length record length.
  24.     public int qs_re_pad; // Fixed-length record pad.
  25.     public int qs_pgfree; // Bytes free in data pages.
  26.     public int qs_first_recno; // First not deleted record.
  27.     public int qs_cur_recno; // Last allocated record number.
  28. }
  29. // end of DbQueueStat.java