Sqlite的简单介绍和应用
Sqlite的简单介绍和应用 (一)为什么要用sqlite3? 相信很多人跟我一样一开始对sqlite不太了解,不明白为什么要用sqlite,为什么不用Mysql(也是我喜欢的数据库之一)?其实,安我的理解是最重要的两点就是简单方便和小巧玲珑,不过还是把sqlite的特点跟大家
Sqlite的简单介绍和应用
(一)为什么要用sqlite3?
相信很多人跟我一样一开始对sqlite不太了解,不明白为什么要用sqlite,为什么不用Mysql(也是我喜欢的数据库之一)?其实,安我的理解是最重要的两点就是简单方便和小巧玲珑,不过还是把sqlite的特点跟大家说一下吧,
sqlite3的优点: www.2cto.com
(1)实现了绝大多数SQL92标准。整个数据库存储在一个单一的文件中
(2)数据库文件可以在不同字节许的机器之间自由共享
(3)提供了多种语言的绑定,如C/C++,python,java
(4)相对比较流行的客户/服务器数据库引擎运行的更快
(5)没有外部依赖,源代码位于公共域,可以用于任何用途。
(6)源代码开放,代码95%有较好的注释
(7)不需要配置,不需要安装,也不需要管理员
(8)sqlite不是一个用于连接到大型数据库服务器的客户端,而是非常适合桌面程序(如字典等)和小型网站的数据库服务器。
(9)sqlite直接读写在硬盘上的数据库文件。
(二)sqlite的安装 www.2cto.com
(1)用系统的包管理器安装
sudo apt-get install sqlite3 sqlite3-doc
若是要安装图形界面,则输入以下指令
sudo apt-get install sqliteman sqliteman-doc
(2)编译安装
到官网(www.sqlite.org)上下载压缩包sqlite-3.*.*.tar.gz
$tar -xvf sqlite-3.*.*.tar.gz
$cd sqlite-3.*.*
$./configure
$make
$sudo make install
(三)sqlite的简单使用
sqlite3兼容大部分的SQL92语法,所以我们只需要学习几个sqlite3的几个特殊命令就可以了。不过为了完整,我还是在下面为大家演示了一些基本操作(如果看不懂的话,那么我想你需要补一点数据库的知识了:-))
首先在命令行执行 sqlite *.db就新建了一个库文件,我们的数据就都保存在这个文件里
$ sqlite3 test.db
SQLite version 3.7.9 2011-11-01 00:52:41
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table test( www.2cto.com
...> ID integer primary key,
...> name varchar(12)
...> );
sqlite> insert into test values(1,"one");
sqlite> insert into test values(2,"Two");
sqlite> insert into test values(3,"Three");
sqlite> select * from test;
1|one
2|Two
3|Three
sqlite> update test set name="One" where ID=1;
sqlite> select * from test;
1|One
2|Two
3|Three
sqlite> delete from test where ID=3;
sqlite> create index ID_INDEX on test(ID);
好了,上面的操作都是符合SQL92标准的,下面的一些命令才是sqlite的特色
sqlite的特殊命令都是以.开头的,比如刚开始进入sqlite的命令行时提示说“ Enter ".help" for instructions",其中“.help"就是特殊命令,我们输入.help会看到以下信息,都是以"."开头的。 www.2cto.com
sqlite> .help
.backup ?DB? FILE Backup DB (default "main") to FILE
.bail ON|OFF Stop after hitting an error. Default OFF
.databases List names and files of attached databases
.dump ?TABLE? ... Dump the database in an SQL text format
......
这里面有几个经常使用的,跳出来说一下。
sqlite> .tables --显示所有的表
test
sqlite> .schema --显示所有的定义
CREATE TABLE test(
ID integer primary key,
name varchar(12)
);
CREATE INDEX ID_INDEX on test(ID);
另外
.quit | .exit 退出
.output FILENAME 备份数据库
其他的自己看在线文档吧,就是.help命令了。
(四)sqlite的特别用法 www.2cto.com
sqlite可以在shell直接运行命令
$sqlite3 test.db "select * from test;" --显示表的内容
$sqlite3 -html test.db "select * from test;" --将表输出为HTML
$sqlite3 test.db ".dump">test.sql --备份数据库
$sqlite3 test.db
(五)用C/C++操作sqlite
我们若是用包管理器安装的sqlite3,那么很遗憾我们并没有用C操作sqlite3所需要的库,我们必须安装libsqlite3-dev
$sudo apt-get install libsqlite3-dev
若是编译安转的话,那么恭喜你,你已经可以用C操作sqlite3了,下面是我编写的一个关于test数据库的创建,插入,删除,更新,查询等的一个C程序,给大家献丑了。
//name:testdb.c
//Autor:prape
//date:2012-10-7
#include
#include
#include
int main(int argc,char **argv){
sqlite3 *db=NULL; www.2cto.com
char *errmsg=0;
int sf;//打开sqlite3库返回的状态
//打开数据库
sf=sqlite3_open("test.db",&db);//打开test.db,并把打开的数据库付给db
if(sf){
printf("can't open database test.db\n");
sqlite3_close(db);
return 0;
}
else{
printf("open test.db successfully\n");
} www.2cto.com
//创建数据库
char *sql="create table test(\
ID integer primary key,\
name varchar(12)\
);";
sqlite3_exec(db,sql,0,0,&errmsg);
//插入记录
sql="insert into \"test\" values(1,\"one\");";
sqlite3_exec(db,sql,0,0,&errmsg);
sql="insert into \"test\" values(2,\"Two\");";
sqlite3_exec(db,sql,0,0,&errmsg);
sql="select * from \"test\";";
//查询记录
int row=0,column=0;
char **result;
sqlite3_get_table(db,sql,&result,&row,&column,&errmsg);
int i=0;
for(i=0;i
printf("result[%d]=%s\n",i,result[i]);
sqlite3_free_table(result);//清除表占内存
sql="delete from \"test\" where ID=3;";
sqlite3_exec(db,sql,0,0,&errmsg);
sqlite3_close(db);
return 0; www.2cto.com
}
然后编译执行
$gcc testdb.c -lsqlite3 -o testdb.exe
如果前面你安装了libsqllite3-dev的话,那么你一定编译成功了,不过记住要链接sqlite3库。
这个程序里面还有许多不足之处,比如每次表的内容更改以后将表格打印出来会好很多,但是代码都是重复的,这里我就不复制代码了(本人有点懒),就当留给大家尝试的内容好了。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The role and practical application of arrow symbols in PHP In PHP, the arrow symbol (->) is usually used to access the properties and methods of objects. Objects are one of the basic concepts of object-oriented programming (OOP) in PHP. In actual development, arrow symbols play an important role in operating objects. This article will introduce the role and practical application of arrow symbols, and provide specific code examples to help readers better understand. 1. The role of the arrow symbol to access the properties of an object. The arrow symbol can be used to access the properties of an object. When we instantiate a pair

Deleted something important from your home screen and trying to get it back? You can put app icons back on the screen in a variety of ways. We have discussed all the methods you can follow and put the app icon back on the home screen. How to Undo Remove from Home Screen in iPhone As we mentioned before, there are several ways to restore this change on iPhone. Method 1 – Replace App Icon in App Library You can place an app icon on your home screen directly from the App Library. Step 1 – Swipe sideways to find all apps in the app library. Step 2 – Find the app icon you deleted earlier. Step 3 – Simply drag the app icon from the main library to the correct location on the home screen. This is the application diagram

The Linuxtee command is a very useful command line tool that can write output to a file or send output to another command without affecting existing output. In this article, we will explore in depth the various application scenarios of the Linuxtee command, from entry to proficiency. 1. Basic usage First, let’s take a look at the basic usage of the tee command. The syntax of tee command is as follows: tee[OPTION]...[FILE]...This command will read data from standard input and save the data to

In Hua Yishan Heart Moon, Lu Shu is an SSR celebrity. He is positioned as a single-target backline player and has a very impressive critical hit rate. Many players don’t know much about Lu Shu. Here’s what I’ve brought you. Come and take a look at the introduction to the skills and attributes of Hua Yishan Heart of the Moon Lu Shu. Celebrity Attributes Celebrity Skills 1. Lu Ming Shuzhong Skill Description: Lu Shu was born in Qiongqihui in Shuzhong. He has practiced martial arts since he was a child and has outstanding martial arts skills. Causes basic attack damage equal to 100% of the enemy's back row attack power, and reduces the target's rage by 10 points. Skill attributes: Level 2: Basic attack damage increased to 105%. Level 2: Basic attack damage is increased to 110%, and the target's rage is reduced by 15 points. Level 2: Basic attack damage increased to 115%. Level 2: Basic attack damage is increased to 120%, and the target's rage is reduced by 20 points. Level 2: Basic attack

2024 is the first year of AI mobile phones. More and more mobile phones integrate multiple AI functions. Empowered by AI smart technology, our mobile phones can be used more efficiently and conveniently. Recently, the Galaxy S24 series released at the beginning of the year has once again improved its generative AI experience. Let’s take a look at the detailed function introduction below. 1. Generative AI deeply empowers Samsung Galaxy S24 series, which is empowered by Galaxy AI and brings many intelligent applications. These functions are deeply integrated with Samsung One UI6.1, allowing users to have a convenient intelligent experience at any time, significantly improving the performance of mobile phones. Efficiency and convenience of use. The instant search function pioneered by the Galaxy S24 series is one of the highlights. Users only need to press and hold

Dogecoin is a cryptocurrency created based on Internet memes, with no fixed supply cap, fast transaction times, low transaction fees, and a large meme community. Uses include small transactions, tips, and charitable donations. However, its unlimited supply, market volatility, and status as a joke coin also bring risks and concerns. What is Dogecoin? Dogecoin is a cryptocurrency created based on internet memes and jokes. Origin and History: Dogecoin was created in December 2013 by two software engineers, Billy Markus and Jackson Palmer. Inspired by the then-popular "Doge" meme, a comical photo featuring a Shiba Inu with broken English. Features and Benefits: Unlimited Supply: Unlike other cryptocurrencies such as Bitcoin

The Go language is an open source programming language developed by Google and first released in 2007. It is designed to be a simple, easy-to-learn, efficient, and highly concurrency language, and is favored by more and more developers. This article will explore the advantages of Go language, introduce some application scenarios suitable for Go language, and give specific code examples. Advantages: Strong concurrency: Go language has built-in support for lightweight threads-goroutine, which can easily implement concurrent programming. Goroutin can be started by using the go keyword

A fast score query tool provides students and parents with more convenience. With the development of the Internet, more and more educational institutions and schools have begun to provide online score check services. To allow you to easily keep track of your child's academic progress, this article will introduce several commonly used online score checking platforms. 1. Convenience - Parents can check their children's test scores anytime and anywhere through the online score checking platform. Parents can conveniently check their children's test scores at any time by logging in to the corresponding online score checking platform on a computer or mobile phone. As long as there is an Internet connection, whether at work or when going out, parents can keep abreast of their children's learning status and provide targeted guidance and help to their children. 2. Multiple functions - in addition to score query, it also provides information such as course schedules and exam arrangements. Many online searches are available.
