Contribute

Installing SQL Lite

To install SQL Lite in your container, you have to run the following commands in the IDE terminal.

Update the package index on your server and install the default postgresql package.

sudo apt-get update
sudo apt-get install sqlite3

You can validate the installation by running the following command. Terminate the program by typing CTRL+D.

sqlite3

See the official documentation for more information on interacting with your database using the command line interface.