前言:
創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括良慶網(wǎng)站建設(shè)、良慶網(wǎng)站制作、良慶網(wǎng)頁制作以及良慶網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,良慶網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到良慶省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
SQLite簡介:是一款輕型的數(shù)據(jù)庫,是遵守ACID的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),它包含在一個(gè)相對(duì)小的C庫中。它是D.RichardHipp建立的公有領(lǐng)域項(xiàng)目。它的設(shè)計(jì)目標(biāo)是嵌入式的,而且目前已經(jīng)在很多嵌入式產(chǎn)品中使用了它,它占用資源非常的低,在嵌入式設(shè)備中,可能只需要幾百K的內(nèi)存就夠了。它能夠支持Windows/Linux/Unix等等主流的操作系統(tǒng),同時(shí)能夠跟很多程序語言相結(jié)合,比如 Tcl、C#、PHP、Java等,還有ODBC接口,同樣比起MySQL、PostgreSQL這兩款開源的世界著名數(shù)據(jù)庫管理系統(tǒng)來講,它的處理速度比他們都快。SQLite第一個(gè)Alpha版本誕生于2000年5月。
SQLite數(shù)據(jù)庫,它廣泛用于包括瀏覽器、IOS,Android以及一些便攜需求的小型web應(yīng)用系統(tǒng)。
接下來,我會(huì)通過一個(gè)登錄功能來介紹一下SQLite數(shù)據(jù)庫在實(shí)際Android項(xiàng)目中的使用。
SQLite數(shù)據(jù)庫的常用操作:
包含建表、刪除表、增、刪、改、查,SQL語法如下:
建表:
create table if not exists 表名(字段1 類型(長度),字段2 類型(長度),...)
刪除表:
drop table if exists 表名
增:
insert into 表名 (字段1,字段2,字段3 ...) values (值1,值2,值3 ...); insert into 目標(biāo)數(shù)據(jù)表 select * from 源數(shù)據(jù)表;
刪:
delete from 表名 where 條件表達(dá)式
改:
update 表名 set 字段1=值1,字段2=值2... where 條件表達(dá)式
查:
select * from 表名 where 條件表達(dá)式
實(shí)例:
1、首先先創(chuàng)建一個(gè)DBHelper類(DBOpenHelper.java)
在這里會(huì)執(zhí)行建庫、建表的操作
package com.hyl.dao; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import android.database.sqlite.SQLiteDatabase.CursorFactory; /** * @programName: DBOpenHelper.java * @programFunction: database helper class * @createDate: 2018/09/29 * @author: AnneHan * @version: * xx. yyyy/mm/dd ver author comments * 01. 2018/09/29 1.00 AnneHan New Create */ public class DBOpenHelper extends SQLiteOpenHelper { public DBOpenHelper(Context context,String name, CursorFactory factory, int version){ super(context, name, factory, version); } @Override //首次創(chuàng)建數(shù)據(jù)庫的時(shí)候調(diào)用,一般可以執(zhí)行建庫,建表的操作 //Sqlite沒有單獨(dú)的布爾存儲(chǔ)類型,它使用INTEGER作為存儲(chǔ)類型,0為false,1為true public void onCreate(SQLiteDatabase db){ //user table db.execSQL("create table if not exists user_tb(_id integer primary key autoincrement," + "userID text not null," + "pwd text not null)"); } @Override//當(dāng)數(shù)據(jù)庫的版本發(fā)生變化時(shí),會(huì)自動(dòng)執(zhí)行 public void onUpgrade(SQLiteDatabase db,int oldVersion,int newVersion){ } }
2、進(jìn)入登錄界面
在點(diǎn)擊登錄按鈕時(shí),會(huì)去數(shù)據(jù)庫里面進(jìn)行查詢,判斷賬號(hào)是否存在(Query查詢范例)
/** * login event * @param v */ public void OnMyLoginClick(View v){ //判斷賬號(hào)/密碼是否有輸入的處理... //調(diào)用DBOpenHelper (qianbao.db是創(chuàng)建的數(shù)據(jù)庫的名稱) DBOpenHelper helper = new DBOpenHelper(this,"qianbao.db",null,1); SQLiteDatabase db = helper.getWritableDatabase(); //根據(jù)畫面上輸入的賬號(hào)/密碼去數(shù)據(jù)庫中進(jìn)行查詢(user_tb是表名) Cursor c = db.query("user_tb",null,"userID=? and pwd=?",new String[]{參數(shù)1的值,參數(shù)2的值},null,null,null); //如果有查詢到數(shù)據(jù) if(c!=null && c.getCount() >= 1){ //可以把查詢出來的值打印出來在后臺(tái)顯示/查看 /*String[] cols = c.getColumnNames(); while(c.moveToNext()){ for(String ColumnName:cols){ Log.i("info",ColumnName+":"+c.getString(c.getColumnIndex(ColumnName))); } }*/ c.close(); db.close(); this.finish(); } //如果沒有查詢到數(shù)據(jù) else{ Toast.makeText(this, "手機(jī)號(hào)或密碼輸入錯(cuò)誤!", Toast.LENGTH_SHORT).show(); } }
3、如果賬號(hào)不存在,則需要去注冊(cè)一個(gè)新賬號(hào)(Insert新增范例)
import com.hyl.dao.DBOpenHelper; import android.content.ContentValues; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; /** * register event * @param v */ public void OnMyRegistClick(View v){ //對(duì)用戶輸入的值的格式進(jìn)行判斷的處理... //調(diào)用DBOpenHelper DBOpenHelper helper = new DBOpenHelper(this,"qianbao.db",null,1); SQLiteDatabase db = helper.getWritableDatabase(); //根據(jù)畫面上輸入的賬號(hào)去數(shù)據(jù)庫中進(jìn)行查詢 Cursor c = db.query("user_tb",null,"userID=?",new String[]{參數(shù)1的值},null,null,null); //如果有查詢到數(shù)據(jù),則說明賬號(hào)已存在 if(c!=null && c.getCount() >= 1){ Toast.makeText(this, "該用戶已存在", Toast.LENGTH_SHORT).show(); c.close(); } //如果沒有查詢到數(shù)據(jù),則往數(shù)據(jù)庫中insert一筆數(shù)據(jù) else{ //insert data ContentValues values= new ContentValues(); values.put("userID","畫面上輸入的值"); values.put("pwd","畫面上輸入的值"); long rowid = db.insert("user_tb",null,values); Toast.makeText(this, "注冊(cè)成功", Toast.LENGTH_SHORT).show();//提示信息 this.finish(); } db.close(); }
4、如果用戶忘記密碼,則需要進(jìn)行密碼重置(Update修改范例)
/** * confirm event */ private void confirmInfo() { //對(duì)界面上用戶輸入的值進(jìn)行判斷的處理... //調(diào)用DBOpenHelper DBOpenHelper helper = new DBOpenHelper(this,"qianbao.db",null,1); SQLiteDatabase db = helper.getWritableDatabase(); //根據(jù)畫面上輸入的賬號(hào)/密碼去數(shù)據(jù)庫中進(jìn)行查詢 Cursor c = db.query("user_tb",null,"userID=?",new String[]{editPhone.getText().toString()},null,null,null); //如果有查詢到數(shù)據(jù),說明賬號(hào)存在,可以進(jìn)行密碼重置操作 if(c!=null && c.getCount() >= 1){ ContentValues cv = new ContentValues(); cv.put("pwd", editPhone.getText().toString());//editPhone界面上的控件 String[] args = {String.valueOf(editPhone.getText().toString())}; long rowid = db.update("user_tb", cv, "userID=?",args); c.close(); db.close(); Toast.makeText(this, "密碼重置成功!", Toast.LENGTH_SHORT).show(); this.finish(); } //如果沒有查詢到數(shù)據(jù),提示用戶到注冊(cè)界面進(jìn)行注冊(cè) else{ new AlertDialog.Builder(this) .setTitle("提示") .setMessage("該用戶不存在,請(qǐng)到注冊(cè)界面進(jìn)行注冊(cè)!") .setPositiveButton("確定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { setResult(RESULT_OK); Intent intent=new Intent(當(dāng)前重置密碼界面.this,注冊(cè)界面.class); 當(dāng)前重置密碼界面.this.startActivity(intent); } }) .setNegativeButton("取消", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton) { return; } }) .show(); } }
以上是一個(gè)登錄功能完整的處理流程,包含了建庫、增/改/查數(shù)據(jù)等操作,希望能讓大家對(duì)SQLite數(shù)據(jù)庫在實(shí)際項(xiàng)目中的使用有一個(gè)大概了解,不足之處,歡迎指正。如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!