SQLite 安裝

2022-11-10 14:03 更新

SQLite 的一個重要的特性是零配置的,這意味著不需要復(fù)雜的安裝或管理。本章將講解 Windows、Linux 和 Mac OS X 上的安裝設(shè)置。

在 Windows 上安裝 SQLite

  • 請訪問 SQLite 下載頁面,從 Windows 區(qū)下載預(yù)編譯的二進制文件。

  • 您需要下載 sqlite-shell-win32-*.zipsqlite-dll-win32-*.zip 壓縮文件。

  • 創(chuàng)建文件夾 C:\>sqlite,并在此文件夾下解壓上面兩個壓縮文件,將得到 sqlite3.def、sqlite3.dll 和 sqlite3.exe 文件。

  • 添加 C:\>sqlite 到 PATH 環(huán)境變量,最后在命令提示符下,使用 sqlite3 命令,將顯示如下結(jié)果。

C:\>sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

在 Linux 上安裝 SQLite

目前,幾乎所有版本的 Linux 操作系統(tǒng)都附帶 SQLite。所以,只要使用下面的命令來檢查您的機器上是否已經(jīng)安裝了 SQLite。

$sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

如果沒有看到上面的結(jié)果,那么就意味著沒有在 Linux 機器上安裝 SQLite。因此,讓我們按照下面的步驟安裝 SQLite:

  • 請訪問 SQLite 下載頁面,從源代碼區(qū)下載 sqlite-autoconf-*.tar.gz。

  • 步驟如下:

$tar xvfz sqlite-autoconf-3071502.tar.gz
$cd sqlite-autoconf-3071502
$./configure --prefix=/usr/local
$make
$make install

上述步驟將在 Linux 機器上安裝 SQLite,您可以按照上述講解的進行驗證。

在 Mac OS X 上安裝 SQLite

最新版本的 Mac OS X 會預(yù)安裝 SQLite,但是如果沒有可用的安裝,只需按照如下步驟進行:

  • 請訪問 SQLite 下載頁面,從源代碼區(qū)下載 sqlite-autoconf-*.tar.gz

  • 步驟如下:

$tar xvfz sqlite-autoconf-3071502.tar.gz
$cd sqlite-autoconf-3071502
$./configure --prefix=/usr/local
$make
$make install

上述步驟將在 Mac OS X 機器上安裝 SQLite,您可以使用下列命令進行驗證:

$sqlite3
SQLite version 3.7.15.2 2013-01-09 11:53:05
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>

最后,在 SQLite 命令提示符下,使用 SQLite 命令做練習(xí)。

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號