Why does not Datagrip run ".tables"? Follow
Answered
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?
Please sign in to leave a comment.
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