RE: [sqlite] Re: data base locked problem

2007-09-12 Thread McDermott, Andrew
> "Igor Tandetnik" <[EMAIL PROTECTED]> schrieb am 11.09.2007 13:40:30: > > > > Armin Steinhoff wrote: > > > if we are try to create a new data base with sqlite we see the > > > following error outputs: > > > > > > # sqlite x.db > > > OPEN3 /appl/sbin/x.db > > > OPEN-EX 4

RE: [sqlite] Difference in these indices?

2007-04-03 Thread McDermott, Andrew
Hi, > > It might make sense to create a separate standalone utility program > > (like sqlite3_analyzer) that reuses some the sqlite source > to do bulk > > inserts into a table in a database file as fast a possible with out > > having to worry about locking or journaling etc. > > That

RE: [sqlite] Re: Java wrapper for both windows and linux

2007-03-30 Thread McDermott, Andrew
Hi, > > Can you elaborate on how you make this selection, and how > you package > > the fragment? > > > > => Since fragments are host-specific, only the fragment you > need will be loaded. > (If you use an update site, only the fragment you need > will be downloaded). > > Note:

[sqlite] Busy timeout and prepare statements

2007-02-07 Thread McDermott, Andrew
Hi, I'm seeking some clarification regarding set_busy_timeout(). If I set this to some positive value does this work when using prepared statements (prepare, step, reset) or only when using sqlite3_exec(). Thanks.