SQLite 的一个重要的特性是零配置的,这意味着不需要复杂的安装或管理。本章将讲解 Windows、Linux 和 Mac OS X 上的安装设置。
C:\>sqlite3
SQLite version 3.31.1 2020-01-27 19:55:54
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>
目前,几乎所有版本的Linux操作系统都附带SQLite。所以,只要使用下面的命令来检查您的机器上是否已经安装了SQLite。
[root@localhost ~]# sqlite3
SQLite version 3.7.17 2013-05-20 00:56:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite>
如果没有看到上面的结果,那么就意味着没有在Linux机器上安装SQLite。因此,让我们按照下面的步骤安装SQLite:
[root@localhost ~]# wget https://www.sqlite.org/2020/sqlite-autoconf-3310100.tar.gz
[root@localhost ~]# tar xf sqlite-autoconf-3310100.tar.gz
[root@localhost ~]# cd sqlite-autoconf-3310100
[root@localhost sqlite-autoconf-3310100]# ./configure --prefix=/usr/local/sqlite
[root@localhost sqlite-autoconf-3310100]# make && make install
上述步骤将在Linux机器上安装SQLite,您可以按照上述讲解的进行验证。
[root@localhost sqlite-autoconf-3310100]# /usr/local/sqlite/bin/sqlite3
SQLite version 3.31.1 2020-01-27 19:55:54
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>
最新版本的Mac OS X会预安装SQLite,但是如果没有可用的安装,只需按照如下步骤进行:
$ unzip sqlite-tools-osx-x86-3310100.zip
$ cd sqlite-tools-osx-x86-3310100
$ ./configure --prefix=/usr/local/sqlite
$ make
$ make install
上述步骤将在Mac OS X机器上安装SQLite,您可以使用下列命令进行验证:
$ sqlite3
SQLite version 3.31.1 2020-01-27 19:55:54
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
sqlite>
最后,在SQLite命令提示符下,使用SQLite命令做练习。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。