Home > Database > Mysql Tutorial > Windows下SQLite的使用步骤

Windows下SQLite的使用步骤

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 14:58:58
Original
1265 people have browsed it

Windows下SQLite的使用步骤 解压压缩包,里面就只有一个sqlite3.exe文件,将其拷贝到系统中任意目录,例如 C:\sqlite 打开命令提示符(不知道怎么开的去Google或者百度),进入1中的目录 输入 sqlite3.exe test.db 即可在当前目录打开名为test.db的数据库,

Windows下SQLite的使用步骤

 

解压压缩包,里面就只有一个sqlite3.exe文件,将其拷贝到系统中任意目录,例如 C:\sqlite

打开命令提示符(不知道怎么开的去Google或者百度),进入1中的目录

 

输入 sqlite3.exe test.db 即可在当前目录打开名为test.db的数据库,如果不存在则新建该数据库

 

C:\sqlite>sqlite3.exe test.db           打开数据库test.db,不存在则新建

SQLite version 3.7.11 2012-03-20 11:35:50

Enter ".help" for instructions

Enter SQL statements terminated with a ";"

sqlite> create table tbl1(one varchar(10), two smallint);  创建一个数据表

sqlite> insert into tbl1 values('hello',10);        插入数据

sqlite> insert into tbl1 values('goodbye',20);       插入数据

sqlite> select * from tbl1;                查询表中数据

hello|10

goodbye|20

sqlite> .quit   退出

 

  SQLite打开数据表后,用户可以通过一些列的SQL语句来操作数据库,每条SQL语句需要以;结束。如果需要退出SQLite,输入指令.quit即可(Windows系统中Ctrl+C也可退出SQLite),更多关于SQLite的操作指令可以通过输入 .help 来进行查看。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Can Windows be learned?
From 1970-01-01 08:00:00
0
0
0
Install PHP in windows environment
From 1970-01-01 08:00:00
0
0
0
zookeeper extension under windows
From 1970-01-01 08:00:00
0
0
0
Can I play vim happily on Windows?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template