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 UUIDs in SQLite?
- How do I use SQLite with Visual Studio?
- How can I use an upsert statement to update data in a SQLite database?
- How do I install and use SQLite on Ubuntu?
- How can I use SQLite with Xamarin Forms?
- How do I use the SQLite sequence feature?
- How can I use SQLite with Xamarin Forms and C#?
- How do I use SQLite VACUUM to reclaim disk space?
- How do I use SQLite REPLACE to update existing records in a database?
- How do I use query parameters with SQLite?
See more codes...