sqliteHow do I install SQLite?
-
Download the SQLite source code and compile it according to the instructions.
-
Unzip the downloaded file, then
cdinto the unzipped directory:
$ unzip sqlite-autoconf-*.zip
$ cd sqlite-autoconf-*
- Configure the compilation process with the
configurecommand:
$ ./configure
- Compile the code with
make:
$ make
- Install SQLite with
make install:
$ make install
- Verify that the installation was successful by running
sqlite3:
$ sqlite3
SQLite version 3.33.0 2020-08-14 16:22:30
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
- To learn more about SQLite, check out the SQLite Documentation.
More of Sqlite
- How do I use SQLite with Visual Studio?
- How do I set up an ODBC driver to connect to an SQLite database?
- How to configure SQLite with XAMPP on Windows?
- How do I use the SQLite ZIP VFS to compress a database?
- How can I resolve the error "no such table" when using SQLite?
- How do I use UUIDs in SQLite?
- How do I use the correct syntax for SQLite?
- How can I use SQLite with Python to create a database?
- How do I resolve an error "no such column" when using SQLite?
- How can I use SQLite with Swift for software development?
See more codes...