"Steven E. Harris" <[EMAIL PROTECTED]> wrote:
> 
> Does SQLite normally execute more than one statement provided in a SQL
> string? 

The sqlite3_prepare()/sqlite3_step() API only executes a single
statement.  The sqlite3_prepare() routine returns a pointer to
the next statement if you give it a list of statements.

The sqlite3_exec() interface executes every statement in the
string you hand it.

--
D. Richard Hipp  <[EMAIL PROTECTED]>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to