Re: [sqlite] Bug Report: DateTime incorrect for Windows

2010-02-25 Thread 4eanlss
Shane Harrelson writes: > ... > I suspect that one of these "quirks" in your build environment is being > exposed by the code in winCurrentTime().Perhaps you could debug through > the code and find where the calculations are going wrong? In this way we > could provide more help.

Re: [sqlite] Maybe just a Question

2010-02-25 Thread Igor Tandetnik
Ray Irvine wrote: > I have found the following: > > BEGIN; UPDATE entry SET Spinnaker="No" ,Singlehand="Doublehand" > ,Doublehand="Third" ,Multi="Multihull" ,Furler=" " WHERE ROWID="45"; > COMMIT In SQL, string literals should be enclosed in single quotes. Column

[sqlite] Maybe just a Question

2010-02-25 Thread Ray Irvine
I have found the following: BEGIN; UPDATE entry SET Spinnaker="No" ,Singlehand="Doublehand" ,Doublehand="Third" ,Multi="Multihull" ,Furler=" " WHERE ROWID="45"; COMMIT Results in the value of the column Singlehand to be set to the current value on the column Doublehand for this ROWID.

Re: [sqlite] WIKI login

2010-02-25 Thread D. Richard Hipp
On Feb 25, 2010, at 4:08 PM, Steve Topov wrote: > I wanted to update information about our products SQLPro - > http://www.vive.net/products/sqlpro.htm and DataPro - > http://www.vive.net/products/datapro.htm in ManagementTools and > ConverterTools. Fair enough. I've reenable access to the

Re: [sqlite] WIKI login

2010-02-25 Thread Steve Topov
I wanted to update information about our products SQLPro - http://www.vive.net/products/sqlpro.htm and DataPro - http://www.vive.net/products/datapro.htm in ManagementTools and ConverterTools. Steve Topov Vive Corp. -Original Message- From: sqlite-users-boun...@sqlite.org

Re: [sqlite] WIKI login

2010-02-25 Thread D. Richard Hipp
On Feb 25, 2010, at 3:29 PM, Steve Topov wrote: > How can I get User name and password to login to Wiki? We don't have a open wiki right now. The old CVSTrac wiki at http://www.sqlite.org/cvstrac/wiki is no longer monitored and was starting to pick up spam, so I turned off write permission

[sqlite] WIKI login

2010-02-25 Thread Steve Topov
How can I get User name and password to login to Wiki? Steve Topov ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Sqlite Step Strange Results

2010-02-25 Thread D. Richard Hipp
On Feb 25, 2010, at 10:19 AM, Rob Read wrote: > We are using sqlite in a low memory environment and as such have > been using > the MEMSYS5 memory allocator. This has been working great to confine > our > memory usage to the buffer that gets passed during start time. I have > recently run

Re: [sqlite] Prepared statements and locking

2010-02-25 Thread Pavel Ivanov
> So is such behavior documented and can be used or should I still avoid > keeping such "live" statements in db-shared enviroment? It's documented that sqlite3_finalize AND sqlite3_reset release all locks acquired by the statement. So after resetting the statement you can keep it as long as you

Re: [sqlite] Sqlite Step Strange Results

2010-02-25 Thread Pavel Ivanov
Could it be because of fragmentation issues? When you allow more cache pages to be allocated you allow more fragmentation to be introduced. And although in total there could be enough memory available there could still be no solid block of sufficient size available. >From the comment in mem5.c:

[sqlite] Prepared statements and locking

2010-02-25 Thread Max Vlasov
Hi, I thought that prepared statements in non-finalized state isn't compatible with locking mechanism in db sharing environment i.e. if I want for any of several processes not to hang waiting for EXCLUSIVE lock none of others should use non-finalized prepared statements. But today I found that

[sqlite] Sqlite Step Strange Results

2010-02-25 Thread Rob Read
We are using sqlite in a low memory environment and as such have been using the MEMSYS5 memory allocator. This has been working great to confine our memory usage to the buffer that gets passed during start time. I have recently run into some strange results while doing a step to insert a blob into

Re: [sqlite] dynamic typing misunderstanding

2010-02-25 Thread P Kishor
On Wed, Feb 24, 2010 at 5:54 PM, eternelmangekyosharingan wrote: > I'm sorry but I don't get your answer. > Can you provide further explanations, please ? Well, it is entirely possible that I have not understood your question, and from Igor and Dan's answers,

Re: [sqlite] sqlite3_close ==> " library routine called out of sequence"

2010-02-25 Thread Jean-Denis Muys
On 2/24/10 19:19 , "D. Richard Hipp" wrote: > > On Feb 24, 2010, at 1:12 PM, Mike Shal wrote: >>> >>> This compiler is llvm. Check it out at http://llvm.org >>> You can test for this mistake on the demo page at http://llvm.org/ >>> demo >>> > > > FWIW, there are currently

Re: [sqlite] sqlite3_close ==> " library routine called out of sequence"

2010-02-25 Thread Jean-Denis Muys
On 2/24/10 19:12 , "Mike Shal" wrote: > On 2/24/10, Jean-Denis Muys wrote: >> >> On 2/24/10 9:36 , "Simon Davies" wrote: >> >>> Rogue semicolon on line >>> if( sqlite3_close( db ) != SQLITE_OK ); >>> >>>

Re: [sqlite] dynamic typing misunderstanding

2010-02-25 Thread Dan Bishop
Igor Tandetnik wrote: > eternelmangekyosharingan > > wrote: > >> I create the following table: >> sqlite> create table t1(a); >> sqlite> insert into t1 values(123456789.123456789); >> >> I ran the following commands: >> sqlite> select * from t1; >>