1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Fix typos in the documentation for sqlite3_table_column_metadata().

No changes to code.

FossilOrigin-Name: 3528f8dd39acace8eeb7337994c8617313f4b04b
This commit is contained in:
drh
2014-12-10 04:58:43 +00:00
parent 45d1b20639
commit 6f7febffa2
3 changed files with 14 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sthe\ssqlite3_table_column_metadata()\sroutine\sso\sthat\sit\sgives\sthe\scorrect\nanswer\sfor\sthe\s"rowid"\scolumn\sin\sa\sWITHOUT\sROWID\stable.\s\sEnhance\sit\sso\sthat\nit\scan\sbe\sused\sto\scheck\sfor\sthe\sexistence\sof\sa\stable\sby\ssetting\sthe\scolumn\nname\sparameter\sto\sNULL.\s\sThe\sroutine\sis\snow\sincluded\sin\sthe\sbuild\sby\ndefault,\seven\swithout\sthe\sSQLITE_ENABLE_COLUMN_METADATA\scompile-time\soption. C Fix\stypos\sin\sthe\sdocumentation\sfor\ssqlite3_table_column_metadata().\nNo\schanges\sto\scode.
D 2014-12-09T22:24:42.981 D 2014-12-10T04:58:43.490
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in 6c4f961fa91d0b4fa121946a19f9e5eac2f2f809 F Makefile.in 6c4f961fa91d0b4fa121946a19f9e5eac2f2f809
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -230,7 +230,7 @@ F src/resolve.c f6c46d3434439ab2084618d603e6d6dbeb0d6ada
F src/rowset.c eccf6af6d620aaa4579bd3b72c1b6395d9e9fa1e F src/rowset.c eccf6af6d620aaa4579bd3b72c1b6395d9e9fa1e
F src/select.c f377fb8a5c73c10678ea74f3400f7913943e3d75 F src/select.c f377fb8a5c73c10678ea74f3400f7913943e3d75
F src/shell.c 45d9c9bd7cde07845af957f2d849933b990773cf F src/shell.c 45d9c9bd7cde07845af957f2d849933b990773cf
F src/sqlite.h.in cc237b8aa62348685b36d06f1b6beb10dfea39ae F src/sqlite.h.in 6c1ca2ee6949a2232029ecd5391dcf3468bf4114
F src/sqlite3.rc 992c9f5fb8285ae285d6be28240a7e8d3a7f2bad F src/sqlite3.rc 992c9f5fb8285ae285d6be28240a7e8d3a7f2bad
F src/sqlite3ext.h 17d487c3c91b0b8c584a32fbeb393f6f795eea7d F src/sqlite3ext.h 17d487c3c91b0b8c584a32fbeb393f6f795eea7d
F src/sqliteInt.h 28049b803b74a7f73242a8226915ea00ebb1309f F src/sqliteInt.h 28049b803b74a7f73242a8226915ea00ebb1309f
@@ -1226,7 +1226,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 84f9581019961efa31297f8be48427b17bcca857 P cf9be419a16156a9814e1378bb49b780de977343
R 0b640911f896cbfee28a6d7f7893118c R 080e42720ecc05dbe5a6fab44e9bfd04
U drh U drh
Z 0a34c44c2738c668de181b5c6607c9d7 Z 55e0d7a4f974fc615b3f61db59cc799b

View File

@@ -1 +1 @@
cf9be419a16156a9814e1378bb49b780de977343 3528f8dd39acace8eeb7337994c8617313f4b04b

View File

@@ -5152,22 +5152,22 @@ SQLITE_DEPRECATED void sqlite3_soft_heap_limit(int N);
/* /*
** CAPI3REF: Extract Metadata About A Column Of A Table ** CAPI3REF: Extract Metadata About A Column Of A Table
** **
** ^The sqlite3_table_column_metadata(X,D,T,C,....) routine returns ** ^(The sqlite3_table_column_metadata(X,D,T,C,....) routine returns
** information about column C of table T in database D ** information about column C of table T in database D
** on [database connection] X. ^The sqlite3_table_column_metadata() ** on [database connection] X.)^ ^The sqlite3_table_column_metadata()
** interface returns SQLITE_OK and fills in the non-NULL pointers in ** interface returns SQLITE_OK and fills in the non-NULL pointers in
** the final five arguments with appropriate vaules if the specified ** the final five arguments with appropriate values if the specified
** column exists. ^The sqlite3_table_column_metadata() interface returns ** column exists. ^The sqlite3_table_column_metadata() interface returns
** SQLITE_ERROR and if the specified column does not exist. ** SQLITE_ERROR and if the specified column does not exist.
** If the column-name parameter to sqlite3_table_column_metadata() is a ** ^If the column-name parameter to sqlite3_table_column_metadata() is a
** NULL pointer, then the routine simply checks for the existance of the ** NULL pointer, then this routine simply checks for the existance of the
** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it ** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it
** does not. ** does not.
** **
** ^The column is identified by the second, third and fourth parameters to ** ^The column is identified by the second, third and fourth parameters to
** this function. ^The second parameter is either the name of the database ** this function. ^(The second parameter is either the name of the database
** (i.e. "main", "temp", or an attached database) containing the specified ** (i.e. "main", "temp", or an attached database) containing the specified
** table or NULL. ^If it is NULL, then all attached databases are searched ** table or NULL.)^ ^If it is NULL, then all attached databases are searched
** for the table using the same algorithm used by the database engine to ** for the table using the same algorithm used by the database engine to
** resolve unqualified table references. ** resolve unqualified table references.
** **