欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

實例講解Android App使用自帶的SQLite數據庫的基本方法

 更新時間:2016年04月19日 17:45:18   作者:summerpxy  
這篇文章主要介紹了Android App使用自帶的SQLite數據庫的基本方法,SQLite是一個小巧的內嵌型數據庫,在數據庫需求不大的情況下使用SQLite其實非常有效,需要的朋友可以參考下

SQLite數據庫是android系統內嵌的數據庫,小巧強大,能夠滿足大多數SQL語句的處理工作,而SQLite數據庫僅僅是個文件而已。雖然SQLite的有點很多,但并不是如同PC端的mysql般強大,而且android系統中不允許通過JDBC操作遠程數據庫,所以只能通過webservice等手段于php、servlet交互獲取數據。

基礎
SQLiteDatabase類,代表了一個數據庫對象,通過SQLiteDatabase來操作管理數據庫。

一些基本的用法:

  •   static  SQLiteDatabase openDatabase(String path,SQLiteDatabase.CUrsorFactory factory,int flag);
  •   static SQLiteDatabase openOrCreateDatabase(File file,SQLiteDatabase.CursorFactory factory);
  •   static SQLiteDatabase openOrCreateDatabase(String path,SQLiteDatabse.CursorFactory factory);

通過這些靜態(tài)方法可以很方便的打開和新建一個數據庫。

  •  execSQL(String sql,Object[] bindArgs)
  • execSQL(String sql)
  • rawQuery(String sql,String[] selectionArgs);
  • beginTransaction()
  • endTransaction()

這些函數可以完成SQL功能,對于查詢出來的結果是用Cursor表示的,類似于JDBC中的ResultSet類,在這些類中通過方法move(int offset)、moveToFirst()、moveToLast()、moveToNext()、moveToPosition(int position)、moveToPrivious()獲取需要的結果行。

下面通過一個實例來說明一下SQLiteDatabase的基本使用:

main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  tools:context=".Main" >
 
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >
 
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:text="key" />
 
    <EditText
      android:id="@+id/keys"
      android:layout_width="100sp"
      android:layout_height="wrap_content" />
 
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:gravity="center"
      android:text="value" />
 
    <EditText
      android:id="@+id/values"
      android:layout_width="100sp"
      android:layout_height="wrap_content" />
 
    <Button
      android:id="@+id/btn"
      android:layout_width="100sp"
      android:layout_height="wrap_content"
      android:text="submit" />
  </LinearLayout>
 
  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
 
    <ListView
      android:id="@+id/lv"
      android:layout_width="match_parent"
      android:layout_height="wrap_content" />
  </LinearLayout>
 
</LinearLayout>

用于填充數據的mytextview.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal" >
 
  <TextView
    android:id="@+id/listkey"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="left" />
 
  <TextView
    android:id="@+id/listvalue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="300sp" />
 
</LinearLayout>

Main.java

package com.app.main;
 
import android.annotation.SuppressLint;
import android.app.Activity;
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;
import android.widget.CursorAdapter;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
 
public class Main extends Activity {
 
  EditText ed1 = null;
  EditText ed2 = null;
  Button btn = null;
  ListView lv = null;
  SQLiteDatabase db = null;
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
 
    ed1 = (EditText) this.findViewById(R.id.keys);
    ed2 = (EditText) this.findViewById(R.id.values);
    btn = (Button) this.findViewById(R.id.btn);
    lv = (ListView) this.findViewById(R.id.lv);
 
    db = SQLiteDatabase.openOrCreateDatabase(this.getFilesDir().toString()
        + "/my.db3", null);
 
    btn.setOnClickListener(new OnClickListener() {
 
      @Override
      public void onClick(View view) {
 
        String key = ed1.getText().toString();
 
        String value = ed2.getText().toString();
 
        try {
          insertData(db, key, value);
 
          Cursor cursor = db.rawQuery("select * from tb_info", null);
 
          inflateListView(cursor);
 
        } catch (Exception e) {
 
          String sql = "create table tb_info(_id integer primary key autoincrement,db_key varchar(20),db_value varchar(50))";
 
          db.execSQL(sql);
 
          insertData(db, key, value);
 
          Cursor cursor = db.rawQuery("select * from tb_info", null);
 
          inflateListView(cursor);
        }
 
      }
 
    });
 
  }
 
  // 向數據庫中插入數據
  private void insertData(SQLiteDatabase db, String key, String value) {
    db.execSQL("insert into tb_info values (null,?,?)", new String[] { key,
        value });
    System.out.println("------------------");
  }
 
  // 向ListView中填充數據
  @SuppressLint("NewApi")
  public void inflateListView(Cursor cursor) {
 
    SimpleCursorAdapter adapter = new SimpleCursorAdapter(Main.this,
        R.layout.mytextview, cursor, new String[] { "db_key",
            "db_value" },
        new int[] { R.id.listkey, R.id.listvalue },
        CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
 
    lv.setAdapter(adapter);
 
  }
 
  @Override
  protected void onDestroy() {
 
    super.onDestroy();
    if (db != null && db.isOpen()) {
      db.close();
    }
  }
 
}

實現的效果:

2016419174304714.png (720×1280)

需要特別指出,在用SimpleCursorAdapter封裝Cursor的時候,要求底層數據庫表的主鍵列的列名為_id,因為SimpleCursorAdapter只能識別主鍵列名為_id的表。

進階
   直接使用SQLiteDatabase的openOrCreateDatabase可以直接打開或者是新建一個SQLiteDatabase,但是這里存在一個缺點。在每次執(zhí)行SQL語句的時候都需要在try catch語句中進行,如果在try中直接操作的數據庫或者表不存在,就需要在catch中重新創(chuàng)建表并且執(zhí)行CRUD操作,并且有關數據庫的每一個方法都要這么做,重復的代碼太多了,所以實際的開發(fā)中大都選用SQLiteOpenHelper類。

主要方法:

  •    synchronized SQLiteDatabase getReadableDatabase():以讀寫的方式打開數據庫。
  •    synchronized SQLiteDatabase getWritableDatabase();以寫的方式打開數據庫。
  •    abstract void onCreate(SQLiteDatabase db)    當第一次創(chuàng)建數據庫的時候回調該方法。
  •    abstract void onUprade(SQLiteDatabase db,int oldversion,int newVersion) 數據庫版本更新的時候回調該方法。
  •   abstract void close()  關閉所有打開的SQLiteDatabase.


使用方法:

  1)繼承SQLiteOpenHelper。在構造方法中的參數String name就是數據庫的名稱。

  2)重寫onCreate和onUpgrade方法。

MySQLiteOpenHelper類:

package com.app.db;
 
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
 
public class MySQLiteOpenHelper extends SQLiteOpenHelper {
 
  String createSQL = "create table tb_test(_id integer primary key autoincrement ,name,age )";
 
  public MySQLiteOpenHelper(Context context, String name,
      CursorFactory factory, int version) {
 
    super(context, name, factory, version);
  }
 
  @Override
  public void onCreate(SQLiteDatabase db) {
 
    db.execSQL(createSQL);
 
  }
 
  @Override
  public void onUpgrade(SQLiteDatabase arg0, int arg1, int arg2) {
 
  }
 
}

Main.java

package com.app.main;
 
import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.Menu;
import android.widget.Toast;
 
import com.app.db.MySQLiteOpenHelper;
 
public class Main extends Activity {
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
 
    MySQLiteOpenHelper helper = new MySQLiteOpenHelper(this, "my.db3",
        null, 1);
 
    String insertSQL = "insert into tb_test values(null,'wx',18)";
 
    SQLiteDatabase db = helper.getReadableDatabase();
 
    db.execSQL(insertSQL);
 
    Cursor cursor = db.rawQuery("select * from tb_test", null);
 
    cursor.moveToFirst();
 
    int id = cursor.getInt(0);
 
    Toast.makeText(this, id+"",Toast.LENGTH_SHORT).show();
  }
 
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
 
    getMenuInflater().inflate(R.menu.main, menu);
     
    return true;
  }
 
}

實現效果:

2016419174411822.png (720×1280)

相關文章

  • 詳解Android啟動第一幀

    詳解Android啟動第一幀

    這篇文章我們就來介紹Android啟動第一幀,至于Android第一幀什么時候開始調度,具體內容我們就來看下面文章內容吧,感興趣得小伙伴可以和小編一起來學習奧
    2021-10-10
  • Android基于AdapterViewFlipper實現的圖片/文字輪播動畫控件

    Android基于AdapterViewFlipper實現的圖片/文字輪播動畫控件

    這篇文章主要介紹了Android基于AdapterViewFlipper實現的圖片/文字輪播動畫控件,幫助大家更好的理解和學習使用Android開發(fā),感興趣的朋友可以了解下
    2021-04-04
  • Android 五大布局方式詳解

    Android 五大布局方式詳解

    本文主要介紹Android 五大布局的知識資料,這里整理了詳細的布局資料及實現示例代碼,和實現效果圖,有興趣的小伙伴可以參考下
    2016-09-09
  • Android之高效加載大圖的方法示例

    Android之高效加載大圖的方法示例

    這篇文章主要介紹了Android之高效加載大圖的方法示例,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-03-03
  • Android 編程下的計時器代碼

    Android 編程下的計時器代碼

    在安卓 APP 的手機號注冊邏輯中,經常會有將激活碼發(fā)送到手機的環(huán)節(jié),這個環(huán)節(jié)中絕大多數的應用考慮到網絡延遲或服務器壓力以及短信服務商的延遲等原因,會給用戶提供一個重新獲取激活碼的按鈕
    2013-08-08
  • Android?Flutter實現創(chuàng)意時鐘的示例代碼

    Android?Flutter實現創(chuàng)意時鐘的示例代碼

    時鐘這個東西很奇妙,總能當做創(chuàng)意實現的入口。這篇文章主要介紹了如何通過Android?Flutter實現一個創(chuàng)意時鐘,感興趣的小伙伴可以了解一下
    2023-03-03
  • android實現可拖動的浮動view

    android實現可拖動的浮動view

    這篇文章主要為大家詳細介紹了android實現可拖動的浮動view,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-04-04
  • Android應用開發(fā)中模擬按下HOME鍵的效果(實現代碼)

    Android應用開發(fā)中模擬按下HOME鍵的效果(實現代碼)

    Android應用開發(fā)中, 有一種場景,就是我們不希望用戶直接按Back鍵退出Activity,而是希望應用隱藏到后臺,類似于按Home鍵的效果
    2013-05-05
  • Android 圖片處理縮放功能

    Android 圖片處理縮放功能

    這篇文章主要介紹了Android 圖片處理縮放功能,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下
    2018-06-06
  • Flutter 實現虎牙/斗魚 彈幕功能

    Flutter 實現虎牙/斗魚 彈幕功能

    這篇文章主要介紹了Flutter 實現虎牙/斗魚 彈幕功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-04-04

最新評論