Re: [sqlite] Database File size not exceeding 2GB

2007-07-05 Thread RaghavendraK 70574
; Date: Thursday, July 5, 2007 7:37 pm Subject: [sqlite] Database File size not exceeding 2GB > Hi all, > > > > This is with reference to the problem mentioned below: > > > > 1) I am using NTFS file system > > 2) I tried in windows 2000 and Windows X

[sqlite] Database File size not exceeding 2GB

2007-07-05 Thread Krishnamoorthy, Priya (IE10)
Hi all, This is with reference to the problem mentioned below: 1) I am using NTFS file system 2) I tried in windows 2000 and Windows XP But still I am able to log only 2 GB of data. SQLite stops logging data more than that. But it is not throwing any exception also. Is

Re: [sqlite] Database File size not exceeding 2GB

2007-07-04 Thread Andrew Finkenstadt
According to http://en.wikipedia.org/wiki/File_Allocation_Table , the limit on FAT16 is 2 gigabytes per file, on FAT32 it's 4 gigabytes per file, and on NTFS it's very, very large. In my application I needed to deal with splitting my data into 2 gigabyte (maximum) database file sizes, and I had

Re: [sqlite] Database File size not exceeding 2GB

2007-07-04 Thread Ian Frosst
Is the file system holding your file Fat32, or NTFS? If it's Fat32, it may be the source of your problem, as it doesn't support very large files. Ian On 7/4/07, Krishnamoorthy, Priya (IE10) <[EMAIL PROTECTED]> wrote: Hi all, I am using SQLite3 database in my application. My application