Re: Increase sqlite3 database size

2013-02-18 Thread Nikolas Stevenson-Molnar
Can you provide more info on how you're getting the data into the database (e.g., via the admin?), and the ORM expression you're using to try to find it? _Nik On 2/18/2013 2:14 PM, Hiral Shah wrote: > > Thank you very much Mikolas and Dennis! > > I understand what are you trying to say but why

Re: Increase sqlite3 database size

2013-02-18 Thread Hiral Shah
Thank you very much Mikolas and Dennis! I understand what are you trying to say but why is the data not going to the database? Regards, Hiral On Sunday, February 17, 2013 6:14:15 PM UTC-8, Hiral Shah wrote: > > Hi All, > > Thanks in advance for your help! > > I am working on back-end to fill

Re: Increase sqlite3 database size

2013-02-17 Thread Nikolas Stevenson-Molnar
The file size of a sqlite3 database file is not a reliable indicator of the volume of data stored in it. This is because sqlite3 does not decrease the file size when you delete data but instead will reuse that space on disk when you add more records. E.g., let's say you create a database and add so