Class SQLiteDebug.DbStats

  • Enclosing class:
    SQLiteDebug

    public static class SQLiteDebug.DbStats
    extends Object
    contains statistics about a 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)