Want to Store SQLite Database Permanently -


this question has answer here:

now, developing 1 web application , create,insert , select every query did javascript , have large size of sqlite database. want store database permanently. when clear browser history entire database loss. now, need solution. there way rectify problem. in advance

every database in sqlite consists of 1 or more "pages". within single database, every page same size, different database can have page sizes powers of 2 between 512 , 65536, inclusive. maximum size of database file 2147483646 pages. @ maximum page size of 65536 bytes, translates maximum database size of approximately 1.4e+14 bytes (140 terabytes, or 128 tebibytes, or 140,000 gigabytes or 128,000 gibibytes).

this particular upper bound untested since developers not have access hardware capable of reaching limit. however, tests verify sqlite behaves correctly , sanely when database reaches maximum file size of underlying filesystem (which less maximum theoretical database size) , when database unable grow due disk space exhaustion.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -