[sqlite] sqlite3_prepare*() statement argument detailed

2016-05-16 Thread Clemens Ladisch
E.D. wrote: > The sqlite3 documentation specifies, that sqlite3_prepare*() compile > "the first statement" from the sqlite3_stmt ** argument. This argument > ought to be explained thoroughly. It is explained thoroughly on . Regards, Clemens

[sqlite] sqlite3_prepare*() statement argument detailed

2016-05-16 Thread E.D.
Hi. The sqlite3 documentation specifies, that sqlite3_prepare*() compile "the first statement" from the sqlite3_stmt ** argument. This argument ought to be explained thoroughly. What exactly can be put through this argument? Compound statements, transactions? What syntax?

[sqlite] sqlite3_prepare*() statement argument detailed

2016-05-16 Thread R Smith
On 2016/05/16 2:58 PM, E.D. wrote: > Hi. > > The sqlite3 documentation specifies, that sqlite3_prepare*() compile "the > first statement" from the sqlite3_stmt ** argument. This argument ought to be > explained thoroughly. > What exactly can be put through this argument? Compound statements,

[sqlite] sqlite3_prepare*() statement argument detailed

2016-05-16 Thread Stephan Beal
On Mon, May 16, 2016 at 2:58 PM, E.D. wrote: > Hi. > > The sqlite3 documentation specifies, that sqlite3_prepare*() compile "the > first statement" from the sqlite3_stmt ** argument. This argument ought to > be explained thoroughly. > What exactly can be put through this argument? Compound

[sqlite] sqlite3_prepare*() statement argument detailed

2016-05-16 Thread R.A. Nagy
SQL statements end with a ";" That is what is meant by "statement." On Mon, May 16, 2016 at 8:58 AM, E.D. wrote: > Hi. > > The sqlite3 documentation specifies, that sqlite3_prepare*() compile "the > first statement" from the sqlite3_stmt ** argument. This argument ought to > be explained