diff options
author | drh <drh@noemail.net> | 2008-05-20 18:43:38 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-05-20 18:43:38 +0000 |
commit | 282c8e5cf399e767f93a8fb741c013535e43297b (patch) | |
tree | e684f128576129e50497c0c38af241df32268b95 /src | |
parent | 35c6190cbc09c9a05e22e3de4c30e3e445958778 (diff) | |
download | sqlite-282c8e5cf399e767f93a8fb741c013535e43297b.tar.gz sqlite-282c8e5cf399e767f93a8fb741c013535e43297b.zip |
Corrections to the documented behavior of sqlite3_last_insert_rowid().
(This change is unrelated to the problem reported by Bram de Jong. That
comes next.) (CVS 5149)
FossilOrigin-Name: 894085a59cdc60c34c8a3eb560d98bcb4a087cb1
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 116bee754..06f61b077 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -30,7 +30,7 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite.h.in,v 1.314 2008/05/20 15:44:31 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.315 2008/05/20 18:43:38 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -849,11 +849,11 @@ struct sqlite3_vfs { ** ** INVARIANTS: ** -** {F12201} Each new [database connection] has the +** {F12201} Each new [database connection] shall have the ** [extended result codes] feature ** disabled by default. ** -** {F12202} The [sqlite3_extended_result_codes(D,F)] interface will enable +** {F12202} The [sqlite3_extended_result_codes(D,F)] interface shall enable ** [extended result codes] for the ** [database connection] D if the F parameter ** is true, or disable them if F is false. @@ -899,8 +899,8 @@ int sqlite3_extended_result_codes(sqlite3*, int onoff); ** {F12221} The [sqlite3_last_insert_rowid()] function returns the ** rowid of the most recent successful insert done ** on the same database connection and within the same -** trigger context, or zero if there have -** been no qualifying inserts on that connection. +** or higher level trigger context, or zero if there have +** been no qualifying inserts. ** ** {F12223} The [sqlite3_last_insert_rowid()] function returns ** same value when called from the same trigger context |