⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dblogstat.java

📁 介绍:MySQL是比较出名的数据库软件
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1998, 1999, 2000 *	Sleepycat Software.  All rights reserved. * *	$Id: DbLogStat.java,v 11.3 2000/02/14 02:59:56 bostic Exp $ */package com.sleepycat.db;/* * This is filled in and returned by the * DbLog.stat() method. */public class DbLogStat{    public int st_magic;                // Log file magic number.    public int st_version;              // Log file version number.    public int st_mode;                 // Log file mode.    public int st_lg_max;               // Maximum log file size.    public int st_w_bytes;              // Bytes to log.    public int st_w_mbytes;             // Megabytes to log.    public int st_wc_bytes;             // Bytes to log since checkpoint.    public int st_wc_mbytes;            // Megabytes to log since checkpoint.    public int st_wcount;               // Total syncs to the log.    public int st_scount;               // Total writes to the log.    public int st_region_wait;          // Region lock granted after wait.    public int st_region_nowait;        // Region lock granted without wait.    public int st_cur_file;             // Current log file number.    public int st_cur_offset;           // Current log file offset.    public int st_regsize;              // Region size.}// end of DbLogStat.java

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -