1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Improvements to help text for the CLI.

FossilOrigin-Name: 6a01e4c444b072e31a320121a6810d7c986c2c54ce45f9b11683233b1e7af8da
This commit is contained in:
drh
2020-05-29 19:17:20 +00:00
parent 1d29fd85a3
commit 7da29a3ad3
3 changed files with 21 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sa\smemory\sleak\sin\sthe\sCLI\swhen\san\sunknown\sor\sunrecognized\nargument\sis\sgiven\sto\sthe\s".dump"\scommand. C Improvements\sto\shelp\stext\sfor\sthe\sCLI.
D 2020-05-29T19:03:03.822 D 2020-05-29T19:17:20.081
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -534,7 +534,7 @@ F src/random.c 80f5d666f23feb3e6665a6ce04c7197212a88384
F src/resolve.c c2008519a0654f1e7490e9281ed0397d0f14bb840d81f0b96946248afcbdb25d F src/resolve.c c2008519a0654f1e7490e9281ed0397d0f14bb840d81f0b96946248afcbdb25d
F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
F src/select.c 39a00a8bc89596dfb37c16afcbb1d33de5085b9963564b58aafe1566d08c0881 F src/select.c 39a00a8bc89596dfb37c16afcbb1d33de5085b9963564b58aafe1566d08c0881
F src/shell.c.in 568398ec752c0dd2dc95fe5f2d1a41a3e2afad44fc426f29a433fb6d47682a57 F src/shell.c.in ca45965c1eca515e4cdd78a495bbebe86b52826cce0fcbf007766dfbd29fa5a5
F src/sqlite.h.in 74342b41e9d68ff9e56b192009046f8dd0aa2bd76ce1a588f330de614ba61de7 F src/sqlite.h.in 74342b41e9d68ff9e56b192009046f8dd0aa2bd76ce1a588f330de614ba61de7
F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
F src/sqlite3ext.h 2d1af80082edffd71c6f96f70ad1ce6a4fb46615ad10291fc77fe0dea9ff0197 F src/sqlite3ext.h 2d1af80082edffd71c6f96f70ad1ce6a4fb46615ad10291fc77fe0dea9ff0197
@@ -1866,7 +1866,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P 4e1db8e9a9ee370a398f13fd8546a520111b8cfb84460389535b5bc5bd9f4f82 P 71bfbbcc1a8d0e02073a381a5b31a5ccd5477011b22904b9989b6129d81f02e7
R dbf605f7d5ebb17a9b1bf4d7d1629225 R bb1b7b61958145efdf723dd1c95331fe
U drh U drh
Z 26823eb3679b06374331d049cd4f4495 Z 88ceb48d848b297c551cf9009c2925f8

View File

@@ -1 +1 @@
71bfbbcc1a8d0e02073a381a5b31a5ccd5477011b22904b9989b6129d81f02e7 6a01e4c444b072e31a320121a6810d7c986c2c54ce45f9b11683233b1e7af8da

View File

@@ -3791,16 +3791,19 @@ static const char *(azHelp[]) = {
".log FILE|off Turn logging on or off. FILE can be stderr/stdout", ".log FILE|off Turn logging on or off. FILE can be stderr/stdout",
".mode MODE ?TABLE? Set output mode", ".mode MODE ?TABLE? Set output mode",
" MODE is one of:", " MODE is one of:",
" ascii Columns/rows delimited by 0x1F and 0x1E", " ascii Columns/rows delimited by 0x1F and 0x1E",
" csv Comma-separated values", " csv Comma-separated values",
" column Left-aligned columns. (See .width)", " column Output in columns. (See .width)",
" html HTML <table> code", " html HTML <table> code",
" insert SQL insert statements for TABLE", " insert SQL insert statements for TABLE",
" line One value per line", " json Results in a JSON array",
" list Values delimited by \"|\"", " line One value per line",
" quote Escape answers as for SQL", " list Values delimited by \"|\"",
" tabs Tab-separated values", " markdown Markdown table format",
" tcl TCL list elements", " quote Escape answers as for SQL",
" table ASCII-art table",
" tabs Tab-separated values",
" tcl TCL list elements",
".nullvalue STRING Use STRING in place of NULL values", ".nullvalue STRING Use STRING in place of NULL values",
".once ?OPTIONS? ?FILE? Output for the next SQL command only to FILE", ".once ?OPTIONS? ?FILE? Output for the next SQL command only to FILE",
" If FILE begins with '|' then open as a pipe", " If FILE begins with '|' then open as a pipe",
@@ -3925,7 +3928,7 @@ static const char *(azHelp[]) = {
".vfsinfo ?AUX? Information about the top-level VFS", ".vfsinfo ?AUX? Information about the top-level VFS",
".vfslist List all available VFSes", ".vfslist List all available VFSes",
".vfsname ?AUX? Print the name of the VFS stack", ".vfsname ?AUX? Print the name of the VFS stack",
".width NUM1 NUM2 ... Set column widths for \"column\" mode", ".width NUM1 NUM2 ... Set minimum column widths for columnar output",
" Negative values right-justify", " Negative values right-justify",
}; };