Re: [sqlite] sqlite3 question

2012-01-31 Thread Pete
n 31, 2012 at 9:00 AM, wrote: > Message: 16 > Date: Mon, 30 Jan 2012 21:12:59 -0800 > From: Larry Brasfield > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] sqlite3 question > Message-ID: <4f27785b.7030...@iinet.com> > Content-Type: text/plain; charset=ISO-8859-1; f

Re: [sqlite] sqlite3 question

2012-01-30 Thread Larry Brasfield
If you look at shell.c in the code implementing sqlite3.exe, you will find a procedure named resolve_backslashes(char *z) which performs a substitution of '\'-escaped characters that is similar to the C/C++ interpretation of string literals. That is what has sucked up those backslashes. Getting

Re: [sqlite] sqlite3 question

2010-10-30 Thread john Papier
Also what's your journal_mode and synchronous setting? ( http://www.sqlite.org/pragma.html#pragma_synchronous) Depending on how these are set, if your application terminates early, or system crashes, you will likely corrupt your DB. 2010/10/30 Martin Engelschalk > Hello Lizhe, > > in order for

Re: [sqlite] sqlite3 question

2010-10-30 Thread Martin Engelschalk
Hello Lizhe, in order for the members in this list to help you, please provide more details. First, the most probable cause for this error is that the database file is in fact corrupted in some way or is not a sqlite database file. What step/steps leads to corruption? What sqlite function returns

Re: [sqlite] sqlite3 question

2010-02-04 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 lizhe wrote: > I am writing to enquire about a bug we found. http://www.beiww.com/doc/oss/smart-questions.html Roger -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

Re: [sqlite] SQLite3 question

2009-05-29 Thread Oza, Hiral_Dineshbhai
age- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of D. Richard Hipp Sent: Thursday, May 28, 2009 6:23 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] SQLite3 question On May 28, 2009, at 8:43 AM, Oza, Hiral_Dineshbhai wrote: > &

Re: [sqlite] SQLite3 question

2009-05-28 Thread John Machin
On 28/05/2009 10:53 PM, Igor Tandetnik wrote: > "Oza, Hiral_Dineshbhai" > wrote in > message > news:24ea477c0c5854409ba742169a5d71c406bd4...@mailhyd2.hyd.deshaw.com >> Can you please let me know meaning of 'Cell' in Btrees used in >> sqlite3. > > Can you point to the text where you saw sqlite3, B

Re: [sqlite] SQLite3 question

2009-05-28 Thread Igor Tandetnik
"Oza, Hiral_Dineshbhai" wrote in message news:24ea477c0c5854409ba742169a5d71c406bd4...@mailhyd2.hyd.deshaw.com > Can you please let me know meaning of 'Cell' in Btrees used in > sqlite3. Can you point to the text where you saw sqlite3, B-trees and the word "Cell" mentioned together? Igor Tandet

Re: [sqlite] SQLite3 question

2009-05-28 Thread D. Richard Hipp
On May 28, 2009, at 8:43 AM, Oza, Hiral_Dineshbhai wrote: > > Can you please let me know meaning of 'Cell' in Btrees used in > sqlite3. See line 43 of the btreeInt.h source file for the definition. You will want to read the previous 42 lines of that same file for context. D. Richard Hipp d.