9951 explained code solutions for 126 technologies


sqliteHow do I install SQLite on Ubuntu?


  1. Install SQLite3 on Ubuntu using the following command:
sudo apt-get install sqlite3
  1. After installation, check the version of SQLite installed using the following command:
sqlite3 --version

Output example

3.22.0 2018-01-22 18:45:57 8f7f2d8b0e7c9b8c1f8b2b0fa9a9f2b9
  1. To create a new database, use the following command:
sqlite3 mydb.sqlite
  1. This will create a new database file called mydb.sqlite. You can open this file using the sqlite3 command.
  2. You can also use the .tables command to list all the tables in the database.
  3. To exit the SQLite prompt, use the .exit command.
  4. For more information, please refer to the official SQLite documentation: https://www.sqlite.org/docs.html.

Edit this code on GitHub