On Wed, Mar 12, 2008 at 3:03 AM, Gilles Ganault <[EMAIL PROTECTED]> wrote: > Hello > > Out of curiosity, is it normal that the size of an SQLite file doesn't > change even when adding stuff to it, as reported by "ls" in Linux? > > Does SQLite use some kind of clusters, ie. pre-reserved space, which > would explain this?
SQLite allocates space in pages. If an insert doesn't require allocating a new page, the file size won't grow. -- Cory Nelson _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

