一.SQLite的介紹
1.SQLite簡介
SQLite是一款輕型的數(shù)據(jù)庫摔认,是遵守ACID的關(guān)聯(lián)式數(shù)據(jù)庫管理系統(tǒng),它的設計目標是嵌入 式的派哲,而且目前已經(jīng)在很多嵌入式產(chǎn)品中使用了它青瀑,它占用資源非常的低焕盟,在嵌入式設備中,可能只需要幾百K的內(nèi)存就夠了。它能夠支持 Windows/Linux/Unix等等主流的操作系統(tǒng)膏孟,同時能夠跟很多程序語言相結(jié)合,比如Tcl扰路、PHP持隧、Java、C++彬向、.Net等兼贡,還有ODBC接口,同樣比起 Mysql娃胆、PostgreSQL這兩款開源世界著名的數(shù)據(jù)庫管理系統(tǒng)來講遍希,它的處理速度比他們都快。
2.SQLite的特點:
輕量級
SQLite和C/S模式的數(shù)據(jù)庫軟件不同里烦,它是進程內(nèi)的數(shù)據(jù)庫引擎凿蒜,因此不存在數(shù)據(jù)庫的客戶端和服務器。使用SQLite一般只需要帶上它的一個動態(tài) 庫胁黑,就可以享受它的全部功能废封。而且那個動態(tài)庫的尺寸也挺小,以版本3.6.11為例丧蘸,Windows下487KB漂洋、Linux下347KB。
不需要"安裝"
SQLite的核心引擎本身不依賴第三方的軟件力喷,使用它也不需要"安裝"刽漂。有點類似那種綠色軟件。
單一文件
數(shù)據(jù)庫中所有的信息(比如表冗懦、視圖等)都包含在一個文件內(nèi)爽冕。這個文件可以自由復制到其它目錄或其它機器上。
跨平臺/可移植性
除了主流操作系統(tǒng) windows披蕉,linux之后颈畸,SQLite還支持其它一些不常用的操作系統(tǒng)。
弱類型的字段
同一列中的數(shù)據(jù)可以是不同類型
開源
這個相信大家都懂的没讲!
3.SQLite數(shù)據(jù)類型
一般數(shù)據(jù)采用的固定的靜態(tài)數(shù)據(jù)類型眯娱,而SQLite采用的是動態(tài)數(shù)據(jù)類型,會根據(jù)存入值自動判斷爬凑。SQLite具有以下五種常用的數(shù)據(jù)類型:
NULL: 這個值為空值
VARCHAR(n):長度不固定且其最大長度為 n 的字串徙缴,n不能超過 4000。
CHAR(n):長度固定為n的字串,n不能超過 254于样。
INTEGER: 值被標識為整數(shù),依據(jù)值的大小可以依次被存儲為1,2,3,4,5,6,7,8.
REAL: 所有值都是浮動的數(shù)值,被存儲為8字節(jié)的IEEE浮動標記序號.
TEXT: 值為文本字符串,使用數(shù)據(jù)庫編碼存儲(TUTF-8, UTF-16BE or UTF-16-LE).
BLOB: 值是BLOB數(shù)據(jù)塊疏叨,以輸入的數(shù)據(jù)格式進行存儲。如何輸入就如何存儲,不改 變格式穿剖。
DATA :包含了 年份蚤蔓、月份、日期糊余。
TIME: 包含了 小時秀又、分鐘、秒贬芥。
相信學過數(shù)據(jù)庫的童鞋對這些數(shù)據(jù)類型都不陌生的!!!!!!!!!!
二.SQLiteDatabase的介紹
Android提供了創(chuàng)建和是用SQLite數(shù)據(jù)庫的API吐辙。SQLiteDatabase代表一個數(shù)據(jù)庫對象,提供了操作數(shù)據(jù)庫的一些方法蘸劈。在Android的SDK目錄下有sqlite3工具昏苏,我們可以利用它創(chuàng)建數(shù)據(jù)庫、創(chuàng)建表和執(zhí)行一些SQL語句昵时。下面是SQLiteDatabase的常用方法捷雕。
**SQLiteDatabase的常用方法 **
1、打開或者創(chuàng)建數(shù)據(jù)庫
在Android 中以使用SQLiteDatabase的靜態(tài)方法openOrCreateDatabase(String path,SQLiteDatabae.CursorFactory factory)打開或者創(chuàng)建一個數(shù)據(jù)庫壹甥。它會自動去檢測是否存在這個數(shù)據(jù)庫救巷,如果存在則打開,不存在則創(chuàng)建一個數(shù)據(jù)庫句柠;創(chuàng)建成功則返回一個SQLiteDatabase對象浦译,否則拋出異常FileNotFoundException。
下面是創(chuàng)建名為“stu.db”數(shù)據(jù)庫的代碼:
db=SQLiteDatabase.openOrCreateDatabase("/data/data/com.lingdududu.db/databases/stu.db",null);
2溯职、創(chuàng)建表
創(chuàng)建一張表很簡單精盅。首先,編寫創(chuàng)建表的SQL語句谜酒,然后叹俏,調(diào)用SQLiteDatabase的execSQL()方法來執(zhí)行SQL語句便可以創(chuàng)建一張表了。
下面的代碼創(chuàng)建了一張用戶表僻族,屬性列為:_id(主鍵并且自動增加)粘驰、sname(學生姓名)、snumber(學號)
private void createTable(SQLiteDatabase db){
//創(chuàng)建表SQL語句
String stu_table="create table usertable(_id integer primary key autoincrement,sname text,snumber text)";
//執(zhí)行SQL語句
db.execSQL(stu_table);
}
3述么、插入數(shù)據(jù)
插入數(shù)據(jù)有兩種方法:
①SQLiteDatabase的insert(String table,String nullColumnHack,ContentValues values)方法蝌数,參數(shù)一是表名稱,參數(shù)二是空列的默認值度秘,參數(shù)三是ContentValues類型的一個封裝了列名稱和列值的Map顶伞;
②編寫插入數(shù)據(jù)的SQL語句,直接調(diào)用SQLiteDatabase的execSQL()方法來執(zhí)行
第一種方法的代碼:
private void insert(SQLiteDatabase db) {
//實例化常量值
ContentValues cValue = new ContentValues();
//添加用戶名
cValue.put("sname","xiaoming");
//添加密碼
cValue.put("snumber","01005");
//調(diào)用insert()方法插入數(shù)據(jù)
db.insert("stu_table",null,cValue);
}
第二種方法的代碼:
private void insert(SQLiteDatabase db){
//插入數(shù)據(jù)SQL語句
String stu_sql="insert into stu_table(sname,snumber) values('xiaoming','01005')";
//執(zhí)行SQL語句
db.execSQL(sql);
}
4、刪除數(shù)據(jù)
刪除數(shù)據(jù)也有兩種方法:
①調(diào)用SQLiteDatabase的delete(String table,String whereClause,String[] whereArgs)方法唆貌,參數(shù)一是表名稱滑潘,參數(shù)二是刪除條件,參數(shù)三是刪除條件值數(shù)組锨咙;
②編寫刪除SQL語句众羡,調(diào)用SQLiteDatabase的execSQL()方法來執(zhí)行刪除。
第一種方法的代碼:
private void delete(SQLiteDatabase db) {
//刪除條件
String whereClause = "_id=?";
//刪除條件參數(shù)
String[] whereArgs = {String.valueOf(2)};
//執(zhí)行刪除
db.delete("stu_table",whereClause,whereArgs);
}
第二種方法的代碼:
private void delete(SQLiteDatabase db) {
//刪除SQL語句
String sql = "delete from stu_table where _id = 6";
//執(zhí)行SQL語句
db.execSQL(sql);
}
5蓖租、修改數(shù)據(jù)
修改數(shù)據(jù)有兩種方法:
①調(diào)用SQLiteDatabase的update(String table,ContentValues values,String whereClause, String[] whereArgs)方法。參數(shù)是表名稱羊壹,參數(shù)是更行列ContentValues類型的鍵值對(Map)蓖宦,參數(shù)是更新條件(where字句),參數(shù)是更新條件數(shù)組油猫。
②編寫更新的SQL語句稠茂,調(diào)用SQLiteDatabase的execSQL執(zhí)行更新。
第一種方法的代碼:
private void update(SQLiteDatabase db) {
//實例化內(nèi)容值
ContentValues values = new ContentValues();
//在values中添加內(nèi)容
values.put("snumber","101003");
//修改條件
String whereClause = "id=?";
//修改添加參數(shù)
String[] whereArgs={String.valuesOf(1)};
//修改
db.update("usertable",values,whereClause,whereArgs);
}
第二種方法的代碼:
private void update(SQLiteDatabase db){
//修改SQL語句
String sql = "update stu_table set snumber = 654321 where id = 1";
//執(zhí)行SQL
db.execSQL(sql);
}
6情妖、查詢數(shù)據(jù)
在Android中查詢數(shù)據(jù)是通過Cursor類來實現(xiàn)的睬关,當我們使用SQLiteDatabase.query()方法時,會得到一個Cursor對象毡证,Cursor指向的就是每一條數(shù)據(jù)电爹。它提供了很多有關(guān)查詢的方法,具體方法如下:public Cursor query(String table,String[] columns,String selection,String[] selectionArgs,String groupBy,String having,String orderBy,String limit);
各個參數(shù)的意義說明:
①table:表名稱
②columns:列名稱數(shù)組
③selection:條件字句料睛,相當于where
④selectionArgs:條件字句丐箩,參數(shù)數(shù)組
⑤groupBy:分組列
⑥having:分組條件
⑦orderBy:排序列
⑧l(xiāng)imit:分頁查詢限制
⑨Cursor:返回值,相當于結(jié)果集ResultSet
Cursor是一個游標接口恤煞,提供了遍歷查詢結(jié)果的方法屎勘,如移動指針方法move(),獲得列值方法getString()等.
Cursor游標常用方法
下面就是用Cursor來查詢數(shù)據(jù)庫中的數(shù)據(jù)居扒,具體代碼如下:
private void query(SQLiteDatabase db)
{
//查詢獲得游標
Cursor cursor = db.query ("usertable",null,null,null,null,null,null);
//判斷游標是否為空
if(cursor.moveToFirst() {
//遍歷游標
for(int i=0;i<cursor.getCount();i++){
cursor.move(i);
//獲得ID
int id = cursor.getInt(0);
//獲得用戶名
String username=cursor.getString(1);
//獲得密碼
String password=cursor.getString(2);
//輸出用戶信息
System.out.println(id+":"+sname+":"+snumber);
}
}
}
7概漱、刪除指定表 編寫插入數(shù)據(jù)的SQL語句,直接調(diào)用SQLiteDatabase的execSQL()方法來執(zhí)行
private void drop(SQLiteDatabase db){
//刪除表的SQL語句
String sql ="DROP TABLE stu_table";
//執(zhí)行SQL
db.execSQL(sql);
}
三. SQLiteOpenHelper
該類是SQLiteDatabase一個輔助類喜喂。這個類主要生成一 個數(shù)據(jù)庫瓤摧,并對數(shù)據(jù)庫的版本進行管理。當在程序當中調(diào)用這個類的方法getWritableDatabase()或者 getReadableDatabase()方法的時候夜惭,如果當時沒有數(shù)據(jù)姻灶,那么Android系統(tǒng)就會自動生成一個數(shù)據(jù)庫。 SQLiteOpenHelper 是一個抽象類诈茧,我們通常需要繼承它产喉,并且實現(xiàn)里面的3個函數(shù):
1.onCreate(SQLiteDatabase)
在數(shù)據(jù)庫第一次生成的時候會調(diào)用這個方法,也就是說,只有在創(chuàng)建數(shù)據(jù)庫的時候才會調(diào)用曾沈,當然也有一些其它的情況这嚣,一般我們在這個方法里邊生成數(shù)據(jù)庫表。
onUpgrade(SQLiteDatabase塞俱,int姐帚,int)
當數(shù)據(jù)庫需要升級的時候,Android系統(tǒng)會主動的調(diào)用這個方法障涯。一般我們在這個方法里邊刪除數(shù)據(jù)表罐旗,并建立新的數(shù)據(jù)表,當然是否還需要做其他的操作唯蝶,完全取決于應用的需求九秀。onOpen(SQLiteDatabase):
這是當打開數(shù)據(jù)庫時的回調(diào)函數(shù),一般在程序中不是很常使用粘我。
寫了這么多鼓蜒,改改用實際例子來說明上面的內(nèi)容了。下面這個操作數(shù)據(jù)庫的實例實現(xiàn)了創(chuàng)建數(shù)據(jù)庫征字,創(chuàng)建表以及數(shù)據(jù)庫的增刪改查的操作都弹。
SQLiteActivity.java
package com.lingdududu.testSQLite;
import com.lingdududu.testSQLiteDb.StuDBHelper;
import android.app.Activity;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
/*
* @author lingdududu
*/
public class SQLiteActivity extends Activity {
/** Called when the activity is first created. */
//聲明各個按鈕
private Button createBtn;
private Button insertBtn;
private Button updateBtn;
private Button queryBtn;
private Button deleteBtn;
private Button ModifyBtn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//調(diào)用creatView方法
creatView();
//setListener方法
setListener();
}
//通過findViewById獲得Button對象的方法
private void creatView(){
createBtn = (Button)findViewById(R.id.createDatabase);
updateBtn = (Button)findViewById(R.id.updateDatabase);
insertBtn = (Button)findViewById(R.id.insert);
ModifyBtn = (Button)findViewById(R.id.update);
queryBtn = (Button)findViewById(R.id.query);
deleteBtn = (Button)findViewById(R.id.delete);
}
//為按鈕注冊監(jiān)聽的方法
private void setListener(){
createBtn.setOnClickListener(new CreateListener());
updateBtn.setOnClickListener(new UpdateListener());
insertBtn.setOnClickListener(new InsertListener());
ModifyBtn.setOnClickListener(new ModifyListener());
queryBtn.setOnClickListener(new QueryListener());
deleteBtn.setOnClickListener(new DeleteListener());
}
//創(chuàng)建數(shù)據(jù)庫的方法
class CreateListener implements OnClickListener{
@Override
public void onClick(View v) {
//創(chuàng)建StuDBHelper對象
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,1);
//得到一個可讀的SQLiteDatabase對象
SQLiteDatabase db =dbHelper.getReadableDatabase();
}
}
//更新數(shù)據(jù)庫的方法
class UpdateListener implements OnClickListener{
@Override
public void onClick(View v) {
// 數(shù)據(jù)庫版本的更新,由原來的1變?yōu)?
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,2);
SQLiteDatabase db =dbHelper.getReadableDatabase();
}
}
//插入數(shù)據(jù)的方法
class InsertListener implements OnClickListener{
@Override
public void onClick(View v) {
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,1);
//得到一個可寫的數(shù)據(jù)庫
SQLiteDatabase db =dbHelper.getWritableDatabase();
//生成ContentValues對象 //key:列名,value:想插入的值
ContentValues cv = new ContentValues();
//往ContentValues對象存放數(shù)據(jù)匙姜,鍵-值對模式
cv.put("id", 1);
cv.put("sname", "xiaoming");
cv.put("sage", 21);
cv.put("ssex", "male");
//調(diào)用insert方法畅厢,將數(shù)據(jù)插入數(shù)據(jù)庫
db.insert("stu_table", null, cv);
//關(guān)閉數(shù)據(jù)庫
db.close();
}
}
//查詢數(shù)據(jù)的方法
class QueryListener implements OnClickListener{
@Override
public void onClick(View v) {
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,1);
//得到一個可寫的數(shù)據(jù)庫
SQLiteDatabase db =dbHelper.getReadableDatabase();
//參數(shù)1:表名
//參數(shù)2:要想顯示的列
//參數(shù)3:where子句
//參數(shù)4:where子句對應的條件值
//參數(shù)5:分組方式
//參數(shù)6:having條件
//參數(shù)7:排序方式
Cursor cursor = db.query("stu_table", new String[]{"id","sname","sage","ssex"}, "id=?", new String[]{"1"}, null, null, null);
while(cursor.moveToNext()){
String name = cursor.getString(cursor.getColumnIndex("sname"));
String age = cursor.getString(cursor.getColumnIndex("sage"));
String sex = cursor.getString(cursor.getColumnIndex("ssex"));
System.out.println("query------->" + "姓名:"+name+" "+"年齡:"+age+" "+"性別:"+sex);
}
//關(guān)閉數(shù)據(jù)庫
db.close();
}
}
//修改數(shù)據(jù)的方法
class ModifyListener implements OnClickListener{
@Override
public void onClick(View v) {
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,1);
//得到一個可寫的數(shù)據(jù)庫
SQLiteDatabase db =dbHelper.getWritableDatabase();
ContentValues cv = new ContentValues();
cv.put("sage", "23");
//where 子句 "?"是占位符號,對應后面的"1",
String whereClause="id=?";
String [] whereArgs = {String.valueOf(1)};
//參數(shù)1 是要更新的表名
//參數(shù)2 是一個ContentValeus對象
//參數(shù)3 是where子句
db.update("stu_table", cv, whereClause, whereArgs);
}
}
//刪除數(shù)據(jù)的方法
class DeleteListener implements OnClickListener{
@Override
public void onClick(View v) {
StuDBHelper dbHelper = new StuDBHelper(SQLiteActivity.this,"stu_db",null,1);
//得到一個可寫的數(shù)據(jù)庫
SQLiteDatabase db =dbHelper.getReadableDatabase();
String whereClauses = "id=?";
String [] whereArgs = {String.valueOf(2)};
//調(diào)用delete方法搁料,刪除數(shù)據(jù)
db.delete("stu_table", whereClauses, whereArgs);
}
}
}
StuDBHelper.java
package com.lingdududu.testSQLiteDb;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class StuDBHelper extends SQLiteOpenHelper {
private static final String TAG = "TestSQLite";
public static final int VERSION = 1;
//必須要有構(gòu)造函數(shù)
public StuDBHelper(Context context, String name, CursorFactory factory,
int version) {
super(context, name, factory, version);
}
// 當?shù)谝淮蝿?chuàng)建數(shù)據(jù)庫的時候或详,調(diào)用該方法
public void onCreate(SQLiteDatabase db) {
String sql = "create table stu_table(id int,sname varchar(20),sage int,ssex varchar(10))";
//輸出創(chuàng)建數(shù)據(jù)庫的日志信息
Log.i(TAG, "create Database------------->");
//execSQL函數(shù)用于執(zhí)行SQL語句
db.execSQL(sql);
}
//當更新數(shù)據(jù)庫的時候執(zhí)行該方法
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
//輸出更新數(shù)據(jù)庫的日志信息
Log.i(TAG, "update Database------------->");
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/createDatabase"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="創(chuàng)建數(shù)據(jù)庫"
/>
<Button
android:id="@+id/updateDatabase"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="更新數(shù)據(jù)庫"
/>
<Button
android:id="@+id/insert"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="插入數(shù)據(jù)"
/>
<Button
android:id="@+id/update"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="更新數(shù)據(jù)"
/>
<Button
android:id="@+id/query"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="查詢數(shù)據(jù)"
/>
<Button
android:id="@+id/delete"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="刪除數(shù)據(jù)"
/>
</LinearLayout>
當點擊創(chuàng)建數(shù)據(jù)庫按鈕:
LogCat窗口輸出的信息為:
當點擊更新數(shù)據(jù)庫按鈕:
LogCat窗口輸出的信息為:
當點擊查詢數(shù)據(jù)庫按鈕:
LogCat窗口輸出的信息為:
使用adb命令查看數(shù)據(jù)庫:
1.在命令行窗口輸入adb shell回車,就進入了Linux命令行郭计,現(xiàn)在就可以使用Linux的命令了霸琴。
2.ls回車,顯示所有的東西昭伸,其中有個data梧乘。(ls:顯示所有,cd:進入)
3.cd data回車庐杨,再ls回車选调,cd data回車,ls回車后就會看到很多的com.灵份。仁堪。。填渠,那就是系統(tǒng)上的應用程序包名弦聂,找到你數(shù)據(jù)庫程序的包名鸟辅,然后進入。
4.進去后在查看所有莺葫,會看到有databases,進入databases匪凉,顯示所有就會發(fā)現(xiàn)你的數(shù)據(jù)庫名字,這里使用的是"stu_db"捺檬。
5.sqlite3 stu_db回車就進入了你的數(shù)據(jù)庫了再层,然后“.schema”就會看到該應用程序的所有表及建表語句。
6.之后就可以使用標準的SQL語句查看剛才生成的數(shù)據(jù)庫及對數(shù)據(jù)執(zhí)行增刪改查了堡纬。
sqlite3 stu_db
sqlite3 stu_db
SQLite version 3.6.22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite.schema
.schema
CREATE TABLE android_metadata (locale TEXT);
CREATE TABLE stu_table(id int,sname varchar(20),sage int,ssex varchar(10)); --->創(chuàng)建的表
sqliteselect * from stu_table;
select * from stu_table;
1|xiaoming|21|male
sqlite>
插入數(shù)據(jù)
sqliteinsert into stu_table values(2,'xiaohong',20,'female');
插入的數(shù)據(jù)記得要和表中的屬性一一對應
insert into stu_table values(2,'xiaohong',20,'female');
sqliteselect * from stu_table;
select * from stu_table;
1|xiaoming|21|male
2|xiaohong|20|female --------------插入的數(shù)據(jù)
sqlite>
當點擊修改數(shù)據(jù)的按鈕時候
sqliteselect * from stu_table;
select * from stu_table;
1|xiaoming|23|male -------------->年齡被修改為23
2|xiaohong|20|female
sqlite>
當點擊刪除數(shù)據(jù)的按鈕
sqliteselect * from stu_table;
select * from stu_table;
1|xiaoming|23|male id=2的數(shù)據(jù)已經(jīng)被刪除
總之聂受,我們可以在代碼中執(zhí)行數(shù)據(jù)庫的增刪改查,也可以在adb命令行下實現(xiàn)烤镐。不過因為SQLite沒有客戶端饺饭,不能直接的查看數(shù)據(jù)庫變化后的信息,所以常用adb命令行查看數(shù)據(jù)庫改變后的信息职车。