sqliteHow do I install SQLite?
-
Download the SQLite source code and compile it according to the instructions.
-
Unzip the downloaded file, then
cd
into the unzipped directory:
$ unzip sqlite-autoconf-*.zip
$ cd sqlite-autoconf-*
- Configure the compilation process with the
configure
command:
$ ./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 the SQLite ZIP VFS to compress a database?
- How do I use the SQLite sequence feature?
- How can SQLite and ZFS be used together for software development?
- How to configure SQLite with XAMPP on Windows?
- How do I use SQLite to zip a file?
- How do I call sqlitepcl.raw.setprovider() when using SQLite?
- How do I use SQLite to retrieve data from a specific year?
- How do I use SQLite with Visual Studio?
- How do I use regular expressions to query a SQLite database?
- How do I list all tables in a SQLite database?
See more codes...