Android中SQLite

山有木xi發表於2020-03-13

在Android系統中內建了一個資料庫,那就是SQLite。SQlite是一個輕量級,嵌入式的關聯式資料庫

它的運算速度非常快,佔用資源很少,通常只需要幾百KB的記憶體,因此特別適合在移動裝置上使用,SQLite不僅支援標準的SQL語法還遵循了資料庫的ACID事務,它相比於一般的資料庫快很多,甚至不需要設定使用者和密碼就能使用。正是因為Android把這個功能及其強大的資料庫內嵌到系統中,才使得本地持久化有了一次質的飛越

Android提供了一個抽象類SQLiteOpenHelper,繼承該類,並且實現onCreate和onUpgrade就能建立資料庫

onCreate是建立資料庫時呼叫,onUpgrade是升級資料庫時呼叫

首先建立一個繼承SQLiteOpenHelper的類

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,"成功建立資料表",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();
            }
        });

即可完成建立

而所謂的升級資料庫,其實就是SQLiteOpenHelper的版本號如果比當前打,就需要onUpgrade升級,如果比當前小就需要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,"成功建立資料表",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);
    }
}

新增資料

insert(String table,String nullColumnHack,ContentValus values)

更新資料

update(String table,ContenValues values,String whereClause,String where[]Args)

刪除資料

delete(String table,String whereClause,String[]Args)

查詢資料

query(String table,String[] columns,String selection,String[] selectionArgs,String groupBy,String having,String ordeBy,String limit)

同時也可以使用SQL命令運算元據庫,例如:

myDb.execSQL(inser into users(userid,password)valus(?,?),new String[]{name,password});


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69917874/viewspace-2680047/,如需轉載,請註明出處,否則將追究法律責任。

相關文章