diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 7c3664253..ca56b8cb9 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -6282,7 +6282,9 @@ sqlite3 *sqlite3_db_handle(sqlite3_stmt*); ** ** ^The sqlite3_db_name(D,N) interface returns a pointer to the schema name ** for the N-th database on database connection D, or a NULL pointer of N is -** out of range. +** out of range. An N alue of 0 means the main database file. An N of 1 is +** the "temp" schema. Larger values of N correspond to various ATTACH-ed +** databases. ** ** Space to hold the string that is returned by sqlite3_db_name() is managed ** by SQLite itself. The string might be deallocated by any operation that |