sqlite-jdbc
sqlite-jdbc copied to clipboard
SQLITE_ENABLE_DBSTAT_VTAB
Sqlite has a DBSTAT virtual table, enabled if Sqlite is compiled using SQLITE_ENABLE_DBSTAT_VTAB. https://sqlite.org/dbstat.html Is it possible to include this in sqlite-jdbc?
Then I would be able to ask table statistics using: SELECT * FROM dbstat; -- no such a table
CREATE VIRTUAL TABLE temp.stat USING dbstat(main) -- no such a module: dbstat;