Package android.database.sqlite
Class SQLiteDebug.DbStats
- java.lang.Object
-
- android.database.sqlite.SQLiteDebug.DbStats
-
- Enclosing class:
- SQLiteDebug
public static class SQLiteDebug.DbStats extends Object
contains statistics about a database
-
-
Field Summary
Fields Modifier and Type Field Description Stringcachestatement cache stats: hits/misses/cachesizeStringdbNamename of the databaselongdbSizethe database sizeintlookasidedocumented here http://www.sqlite.org/c3ref/c_dbstatus_lookaside_used.htmllongpageSizethe page size for the database
-
-
-
Field Detail
-
dbName
public String dbName
name of the database
-
pageSize
public long pageSize
the page size for the database
-
dbSize
public long dbSize
the database size
-
lookaside
public int lookaside
documented here http://www.sqlite.org/c3ref/c_dbstatus_lookaside_used.html
-
cache
public String cache
statement cache stats: hits/misses/cachesize
-
-
Constructor Detail
-
DbStats
public DbStats(String dbName, long pageCount, long pageSize, int lookaside, int hits, int misses, int cachesize)
-
-