Re: [sqlite] Re: Transaction Check

2007-07-29 Thread RaghavendraK 70574
AIL PROTECTED]> Date: Sunday, July 29, 2007 8:06 pm Subject: [sqlite] Re: Transaction Check > RaghavendraK 70574 > <[EMAIL PROTECTED]> wrote: > > If the sqlite file is deleted at runtime and if there are any open > > connections,can these connections detect and return error? >

[sqlite] Re: Transaction Check

2007-07-29 Thread Igor Tandetnik
RaghavendraK 70574 <[EMAIL PROTECTED]> wrote: If the sqlite file is deleted at runtime and if there are any open connections,can these connections detect and return error? On Windows, you simply cannot delete a file that is open by somebody else. DeleteFile call returns an error. On Linux,

Re: [sqlite] Re: Transaction journal corrupted by antivirus

2007-05-03 Thread Teg
Hello Dave, Well, if you have users with really odd performance issues. I mean orders of magnitude slower than you expect. I've found it's either AV software, Norton in particular will crush PC performance or external USB hard disks/memory sticks. That's become the first question I ask any more

[sqlite] Re: Transaction journal corrupted by antivirus

2007-05-03 Thread Dave Dyer
Slightly off-topic for this list, but antivirus and firewall software is a plague that is bad and going to get worse. In effect, antivirus software is a security guard that randomly shoots "suspicious" members of the public.

Re: [sqlite] Re: TRANSACTION

2007-04-23 Thread John Stanton
Thanks Igor, much obliged. That fits my application quite elegantly. Igor Tandetnik wrote: John Stanton <[EMAIL PROTECTED]> wrote: I want to store multi-statement SQL to implement an entire transaction in the form - BEGIN statement statement ... COMMIT I can see that

[sqlite] Re: TRANSACTION

2007-04-23 Thread Igor Tandetnik
John Stanton <[EMAIL PROTECTED]> wrote: I want to store multi-statement SQL to implement an entire transaction in the form - BEGIN statement statement ... COMMIT I can see that sqlite3_prepare has the capability of stepping through a multi statement string but it looks

[sqlite] Re: Transaction Help Please

2006-11-04 Thread Igor Tandetnik
mithin <[EMAIL PROTECTED]> wrote: I have a CSV file that needs to be imported into a SQLite database and the contents of the CSV file should be inserted into various tables of the database. 1. Will using transaction speed up this opeartion of import? Yes. Perform all the insertions within a