Hi !

I have used sqlite_exec in all my querys and I read in OnLine Doc
that in version 2.8.13 it is now a wraper to sqlite_compile.
So, I guess that use sqlite_exec now has more overhead than
sqlite_compile, is it true ? 
Is sqlite_compile faster than sqlite_exec ?

If I use sqlite_compile with comandos like Insert, delete and update
(that returns no rows) I must call sqlite_step or is not necessary ?
sqlite_compile (db, "insert into ...");
sqlite_finalize (db, NULL);
will work ?

Thanks

Rubens Jr.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to