sqlite-jdbc icon indicating copy to clipboard operation
sqlite-jdbc copied to clipboard

SQLITE_ENABLE_DBSTAT_VTAB

Open dbschema-pro opened this issue 4 years ago • 0 comments

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;

dbschema-pro avatar Dec 29 '20 06:12 dbschema-pro