Query to find table / database size?

Does anyone know how to get the total database size for sqlite? Alternatively, if it is only possible to get the size of the table, I would like to know how to get multiple table sizes in the query, if possible.

+3
source share
1 answer

The SQLite database is stored in a single file. This file size is the size of your database.

0
source

Source: https://habr.com/ru/post/1772608/


All Articles