Why does not Datagrip run ".tables"?

已回答

I'm running a SQLite script. My datagrip does not run the following lines

.tables
.schema doctors
.schema sqlite_master

When I run these lines, it returns "Nothing to run"

Could you please elaborate on this issue?

0

Those commands are special for the command line shell only.  Lines that begin with a dot (".") are intercepted and interpreted by the sqlite3 program itself.

See #3 https://sqlite.org/cli.html 

0

请先登录再写评论。