[sqlite] Upgraded from 2.8.6 to 2.8.13

2004-05-26 Thread v t
Hi , I upgraded sqlite version from 2.8.6 to 2.8.13. And I am running into a problem where after inserting and deleting some (eg 30 ) entries, I get the error, "database is full" followed by "database disk image is malformed ". I use sqlite_exec to run all queries. The database has a table

Re: [sqlite] sqlite on vxworks or vrtx?

2004-03-29 Thread v t
Hi, I ported sqlite to Vxworks. It was a straight forward port. File locking is not possible in VxWorks. So I do not use it. So I define the macro __DJGPP__ which takes care of fcntl call used for file locking. Did not include the files shell.c and tclsqlite.c in my project. I used the

Re: [sqlite] tables in in-memory database

2004-02-11 Thread v t
databases? Thanks vt "D. Richard Hipp" <[EMAIL PROTECTED]> wrote: v t wrote: > Hi > > When I execute the following query on a in-memory database, I get no results. > The query is " SELECT * FROM SQLITE_TEMP_MASTER WHERE type='table'". I ^^ Should be &

Re: [sqlite] Journalling

2003-10-27 Thread v t
of some failure. vt "Mrs. Brisby" <[EMAIL PROTECTED]> wrote: On Thu, 2003-10-23 at 19:46, v t wrote: > Hi, > > How do I turn journalling OFF? Why do you want to? What exactly are you trying to accomplish? --