SQLite 安装
一、SQLite 安装1、一般安装方法:https://www.runoob.com/sqlite/sqlite-installation.html2、使用as SDK自带的:例如在 AndroidSDK目录\platform-tools目录下,有一个exe文件就是,双击可以打开dos界面进行编写。或者将上述讲的SQLite的目录(AndroidSDK目录\platfor...
·
一、SQLite 安装
1、一般安装方法:
https://www.runoob.com/sqlite/sqlite-installation.html
2、使用as SDK自带的:
例如在 AndroidSDK目录\platform-tools目录下,有一个exe文件就是,双击可以打开dos界面进行编写。
或者将上述讲的SQLite的目录(AndroidSDK目录\platform-tools)添加到环境变量path下就可以完成配置
验证是否完成配置:打开dos界面,输入SQLite3,出现以下界面就表示成功了
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>
二、SQLite 命令
https://www.runoob.com/sqlite/sqlite-commands.html
其中退出命令为:.exit
三、SQLite数据库管理工具,可视化工具
1、SQLite Expert Professional
http://www.sqliteexpert.com/
2、SQLiteStudio
https://sqlitestudio.pl/index.rvt -- 目前最新版是v3.1.1绿色版,Qt写的,推荐使用
更多推荐
所有评论(0)