]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Clarification of the meaning of the N parameter in sqlite3_db_name().
authordrh <>
Thu, 26 May 2022 14:46:09 +0000 (14:46 +0000)
committerdrh <>
Thu, 26 May 2022 14:46:09 +0000 (14:46 +0000)
Documentation only.  No changes to code.

FossilOrigin-Name: f22f41d2c8a676b9a339e7f00c29c163bbb7079b1a4a76ee1a6a96aaf7de5f9e

manifest
manifest.uuid
src/sqlite.h.in

index 901616d096014b12697870226961ea3969157562..db5cbba4e0db992fa1b030ae7c49b75ebdaf4545 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fixed\sa\sminor\scut/paste\smistake\sin\sthe\sprevious\scheckin.\sAffects\sonly\sinternal\sdocs.
-D 2022-05-26T05:18:33.887
+C Clarification\sof\sthe\smeaning\sof\sthe\sN\sparameter\sin\ssqlite3_db_name().\nDocumentation\sonly.\s\sNo\schanges\sto\scode.
+D 2022-05-26T14:46:09.766
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -569,7 +569,7 @@ F src/resolve.c a4eb3c617027fd049b07432f3b942ea7151fa793a332a11a7d0f58c9539e104f
 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
 F src/select.c a0dca0b4a328826d4713195a2fe305852cd8b1ed876311667b00c64b93a7fe23
 F src/shell.c.in f3e0eb3e817f4d2edaeb12a06b2a0c8b5302fa223d87db68975313b9ce768e03
-F src/sqlite.h.in d15c307939039086adca159dd340a94b79b69827e74c6d661f343eeeaefba896
+F src/sqlite.h.in 172528c287399a34f188154017b7268bf82c6d5b780902e361958d2318c4e37c
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h a988810c9b21c0dc36dc7a62735012339dc76fc7ab448fb0792721d30eacb69d
 F src/sqliteInt.h 3064533677f135771e71843b5221482df18d6589afe65e6a7ef828ccb8879a5f
@@ -1969,8 +1969,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 1a159159094d6357b3cadbb8e5499cec4de35ef382c03fcc45c11daee906c3d6
-R 70b4e1e5fdf8e461117e5a8beeef8ee6
-U stephan
-Z 5753ec80c3c37a802b11484d956a1c77
+P 37e3764839b968456f576fad67d3d99007773f5c0689165ecbdc610fcabef1ca
+R ad1c2600d93c5d6d7235db32fa9a048b
+U drh
+Z ca32a2eb387f9f8be5f39604dc123106
 # Remove this line to create a well-formed Fossil manifest.
index 528de1e251c32f8fb178fcfc9f4fa0b103e7ffe1..712a49a30907637edaf915dcdd5da0b47598dd6a 100644 (file)
@@ -1 +1 @@
-37e3764839b968456f576fad67d3d99007773f5c0689165ecbdc610fcabef1ca
\ No newline at end of file
+f22f41d2c8a676b9a339e7f00c29c163bbb7079b1a4a76ee1a6a96aaf7de5f9e
\ No newline at end of file
index 7c3664253d734ca76e2106431f493eb288953324..ca56b8cb98021401eb32c44093971d4f78ae39a3 100644 (file)
@@ -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