SQLite Forum

Non-existent function lsname() in cli
Login

Non-existent function lsname() in cli

(1) By ET (EricTsau) on 2021-06-21 02:34:30 [source]

Hi,

In 14.6.1 of the cli documentation theres a reference to a lsname function, which does not exist in the cli shell.

SQLite version 3.35.5 2021-04-19 18:32:05 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite> select * from lsname(); Error: no such table: lsname

https://sqlite.org/cli.html

(2.1) By Larry Brasfield (larrybr) on 2021-06-21 03:54:12 edited from 2.0 in reply to 1 [link] [source]

Thanks for the report. Now fixed in repo, to be published later.

If you want to use a function like that, its name is "lsmode". Note that it is a plain scalar function; it does not create an eponymous virtual table (as would be needed to support the usage in your post.)