[sqlite] testing with single source file

2007-04-01 Thread Iulian Musat
[EMAIL PROTECTED] wrote: [...] In past releases of SQLite, we have made available a ZIP archive with preprocessed source files. In the future, we may change this so that instead of a ZIP archive full of individual files, we ship a single sqlite3.c source file which contains all of the source

Re: [sqlite] PRAGMA locking_mode = EXCLUSIVE

2007-03-27 Thread Iulian Musat
Really interesting. Is there an easy way of producing the big sqlite3.c from CVS head? I'm curios to run some of my tests this way. -i [EMAIL PROTECTED] wrote: Joe Wilson [EMAIL PROTECTED] wrote: What operations/work patterns will benefit most from PRAGMA locking_mode = EXCLUSIVE? Can

[sqlite] round and storage class

2007-03-26 Thread Iulian Musat
Hello everybody ! First of all I have to say that I'm a fairly new user of SQLite, so be kind :-) The problem is with the round function: the result have a decimal point even if the second argument is zero (the default): sqlite select round(1.234); 1.0 sqlite select round(1.234,0); 1.0 I'm