您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)Android中SQLite的作用是什么,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
在A(yíng)ndroid系統(tǒng)中內(nèi)置了一個(gè)數(shù)據(jù)庫(kù),那就是SQLite。SQlite是一個(gè)輕量級(jí),嵌入式的關(guān)系數(shù)據(jù)庫(kù)
它的運(yùn)算速度非???,占用資源很少,通常只需要幾百KB的內(nèi)存,因此特別適合在移動(dòng)設(shè)備上使用,SQLite不僅支持標(biāo)準(zhǔn)的SQL語(yǔ)法還遵循了數(shù)據(jù)庫(kù)的ACID事務(wù),它相比于一般的數(shù)據(jù)庫(kù)快很多,甚至不需要設(shè)置用戶(hù)和密碼就能使用。正是因?yàn)锳ndroid把這個(gè)功能及其強(qiáng)大的數(shù)據(jù)庫(kù)內(nèi)嵌到系統(tǒng)中,才使得本地持久化有了一次質(zhì)的飛越
Android提供了一個(gè)抽象類(lèi)SQLiteOpenHelper,繼承該類(lèi),并且實(shí)現(xiàn)onCreate和onUpgrade就能創(chuàng)建數(shù)據(jù)庫(kù)
onCreate是創(chuàng)建數(shù)據(jù)庫(kù)時(shí)調(diào)用,onUpgrade是升級(jí)數(shù)據(jù)庫(kù)時(shí)調(diào)用
首先創(chuàng)建一個(gè)繼承SQLiteOpenHelper的類(lèi)
public class MySQLiteHelper extends SQLiteOpenHelper { private static String CREATE_TABLE_USER="create table users("+ "id integer primary key autoincrement,"+ "userid text,password text)"; private Context sContext; public MySQLiteHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); sContext=context; } @Override public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE_TABLE_USER); Toast.makeText(sContext,"成功創(chuàng)建數(shù)據(jù)表",Toast.LENGTH_LONG).show(); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { } }
在MainActivity中
public class MainActivity extends AppCompatActivity { private MySQLiteHelper sqLiteHelper; private SQLiteDatabase myDb; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btCreateDb=(Button)findViewById(R.id.btCreateDb); btCreateDb.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { sqLiteHelper=new MySQLiteHelper(MainActivity.this,"usersdb.db",null,1); myDb=sqLiteHelper.getWritableDatabase(); } });
即可完成創(chuàng)建
而所謂的升級(jí)數(shù)據(jù)庫(kù),其實(shí)就是SQLiteOpenHelper的版本號(hào)如果比當(dāng)前打,就需要onUpgrade升級(jí),如果比當(dāng)前小就需要onDowngrade
public class MySQLiteHelper extends SQLiteOpenHelper { private static String CREATE_TABLE_USER="create table users("+ "id integer primary key autoincrement,"+ "userid text,password text)"; private static String CREATE_TABLE_TYPE="create table types("+ "id integer primary key autoincrement,"+ "type_code,describe text)"; private Context sContext; public MySQLiteHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); sContext=context; } @Override public void onCreate(SQLiteDatabase db) { db.execSQL(CREATE_TABLE_USER); db.execSQL(CREATE_TABLE_TYPE); Toast.makeText(sContext,"成功創(chuàng)建數(shù)據(jù)表",Toast.LENGTH_LONG).show(); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { db.execSQL("drop table if exists users"); db.execSQL("drop table if exists types"); onCreate(db); } }
添加數(shù)據(jù)
insert(String table,String nullColumnHack,ContentValus values)
更新數(shù)據(jù)
update(String table,ContenValues values,String whereClause,String where[]Args)
刪除數(shù)據(jù)
delete(String table,String whereClause,String[]Args)
查詢(xún)數(shù)據(jù)
query(String table,String[] columns,String selection,String[] selectionArgs,String groupBy,String having,String ordeBy,String limit)
同時(shí)也可以使用SQL命令操作數(shù)據(jù)庫(kù),例如:
myDb.execSQL(inser into users(userid,password)valus(?,?),new String[]{name,password});
關(guān)于A(yíng)ndroid中SQLite的作用是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。