sqlite - query to find a table / database size?
Anyone know how to get a database total filesize for sqlite? Alternatively if its only possible to get a table size I'd like开发者_Python百科 to know how to get multiple tables sizes in query if possible.
A SQLite database is stored in a single file. That file's size is the size of your database.
精彩评论