RE: [sqlite] Rewriting SQLite APIs to Delphi

2003-11-07 Thread Bronislav Klučka
I know where the mistake is: this > int *pN, /* OUT: Number of columns in result */ is not AColumnCount:PInteger; but var AColumnCount:Integer; Klucka - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[sqlite] Rewriting SQLite APIs to Delphi

2003-11-07 Thread Bronislav Klučka
Hi there are 3 functions as described in SQLite homepage help int sqlite_compile( sqlite *db, /* The open database */ const char *zSql,/* SQL statement to be compiled */ const char **pzTail, /* OUT: uncompiled tail of zSql */ sqlite_vm **ppVm,

Re: [sqlite] database table is locked

2003-11-07 Thread Mrs. Brisby
On Sat, 2003-11-08 at 07:20, Thiago Mello wrote: > Hi Ben Carlyle, > > First of all, thanks for your help! > > I can't brig these two operation togethe causa I need the result of the > SELECT in a if condition. You cannot do the UPDATE inside of a SELECT callback. You do not need the results