sqliteHow do I quit SQLite?
To quit SQLite, type .exit in the console.
Example
sqlite> .exit
This will exit the SQLite console and return to the terminal.
Code explanation
.exit: This is the command used to quit the SQLite console.
Helpful links
More of Sqlite
- How do I use the SQLite ZIP VFS to compress a database?
- How can I use SQLite with Zabbix?
- How do I use SQLite with Zephyr?
- How do I extract the year from a datetime value in SQLite?
- How do I call sqlitepcl.raw.setprovider() when using SQLite?
- How do I use the SQLite VARCHAR data type?
- How can I adjust the text size in SQLite?
- How do I use an array in SQLite?
- How can I resolve the error "no such table" when using SQLite?
- How do I generate XML output from a SQLite database?
See more codes...