Looking around casually at various product's log files, including Windows components, all my various apps. and any other software, I find no examples of anyone employing other than "text" flat files for "logging" purposes.
I suspect this is true because: Text flat files are the simplest form of permanent data storage. Log files are mostly ignored, except when researching an immediate problem. (i.e. last few records) No need for sophisticated SQL like data interrogation. Database management overhead exceeds the return on investment. If anyone's application's logging requirements are non standard to the point of requiring a full featured database, I suspect this might not be considered a "traditional" logging requirement. Fred > -----Original Message----- > From: Jay Sprenkle [mailto:[EMAIL PROTECTED] > Sent: Friday, January 13, 2006 9:47 AM > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] SQLite -- Very Slow -- ?? > > > > Hi > > > > <<What is "slow" or "slower"? >> > > When I run the program without logs an action take 1ms, > with logs inserted > > in a text file it takes 1.2ms so its "SLOW", and with logs > inserted in a > > SQLite DB it takes 1.4ms so its "SLOWER" than the text file. > > Not to be negative or anything, but you're asking the > computer to do more work > and expecting it go faster?