安卓開發筆記(十三):SQLite資料庫儲存(下)數據的增添,更改,刪除,查詢

来源:https://www.cnblogs.com/geeksongs/archive/2019/03/14/10530940.html
-Advertisement-
Play Games

SQLite資料庫存儲(下) 1.增添數據 對於添加數據的話我們只需要在主活動當中import新的包以及在主活動當中寫上適當的代碼就可以了,不需要在我們之前創建新的類當中書寫新的代碼。現在的主活動代碼如下: 這樣我們就分別向book表以及category表當中增添了數據了。當然我們也可以在這段代碼當 ...


 

SQLite資料庫存儲(下)

1.增添數據

對於添加數據的話我們只需要在主活動當中import新的包以及在主活動當中寫上適當的代碼就可以了,不需要在我們之前創建新的類當中書寫新的代碼。現在的主活動代碼如下:

package com.example.lenovo.studyittwo;


import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.content.*;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    private MyDatabaseHelper dbHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // 構建MyDatabaseHelper對象,指定資料庫名為"BookStore.db、版本號為1,版本號改為2之後則會直接
        dbHelper = new MyDatabaseHelper(this, "BookStore.db", null, 2);
        Button btn_create_database = (Button) findViewById(R.id.creat);
        btn_create_database.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                // 創建或打開一個現有的資料庫(已存在則打開,否則創建一個新的)
                dbHelper.getWritableDatabase();
            }
        });
        Button addData= (Button)findViewById(R.id.add);
        addData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Book",null,values);
               values.clear();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Category",null,values);
               values.clear();

            }
        });



    }}

這樣我們就分別向book表以及category表當中增添了數據了。當然我們也可以在這段代碼當中看到我們新建了一個按鈕,用於演示我們數據是否已經插入成功,下麵是我們新的主活動界面的代碼:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

   <Button
       android:id="@+id/creat"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Create database"/>
   <Button
       android:id="@+id/add"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Add data"/>

</LinearLayout>

很自然地運用了一個線性的垂直佈局,只是增加了一個button而已。

2.更改數據

為了方便研究更改數據,我們在佈局下加入更改數據的按鈕,代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

   <Button
       android:id="@+id/creat"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Create database"/>
   <Button
       android:id="@+id/add"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Add data"/>
   <Button
       android:id="@+id/updata"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Updata data"/>

</LinearLayout>

這裡上主活動的代碼,我們只是在第三個按鈕處將代碼做了適當的添加,這樣就可以進行數據的更改了:

package com.example.lenovo.studyittwo;


import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.content.*;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    private MyDatabaseHelper dbHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // 構建MyDatabaseHelper對象,指定資料庫名為"BookStore.db、版本號為1,版本號改為2之後則會直接
        dbHelper = new MyDatabaseHelper(this, "BookStore.db", null, 2);
        Button btn_create_database = (Button) findViewById(R.id.creat);
        btn_create_database.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                // 創建或打開一個現有的資料庫(已存在則打開,否則創建一個新的)
                dbHelper.getWritableDatabase();
            }
        });
        Button addData= (Button)findViewById(R.id.add);
        addData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Book",null,values);
               values.clear();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Category",null,values);
               values.clear();

            }
        });
        Button updataData= (Button)findViewById(R.id.updata);
        updataData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","我是傻逼\n");
               db.update("Book",values,"name=?",new String[]{"the fuck code"});

            }
        });



    }}

 

3.刪除數據

還是同樣的套路,我們直接在主界面上加入第四個刪除數據的按鈕:

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

   <Button
       android:id="@+id/creat"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Create database"/>
   <Button
       android:id="@+id/add"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Add data"/>
   <Button
       android:id="@+id/updata"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Updata data"/>
   <Button
       android:id="@+id/deletedata"
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:text="Delete data"/>

</LinearLayout>

 

然後寫入主活動的代碼:

package com.example.lenovo.studyittwo;


import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.content.*;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
    private MyDatabaseHelper dbHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // 構建MyDatabaseHelper對象,指定資料庫名為"BookStore.db、版本號為1,版本號改為2之後則會直接
        dbHelper = new MyDatabaseHelper(this, "BookStore.db", null, 2);
        Button btn_create_database = (Button) findViewById(R.id.creat);
        btn_create_database.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                // 創建或打開一個現有的資料庫(已存在則打開,否則創建一個新的)
                dbHelper.getWritableDatabase();
            }
        });
        Button addData= (Button)findViewById(R.id.add);
        addData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Book",null,values);
               values.clear();
               values.put("name","the fuck code");
               values.put("autuor","fuckers");
               db.insert("Category",null,values);
               values.clear();

            }
        });
        Button updataData= (Button)findViewById(R.id.updata);
        updataData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","我是傻逼\n");
               db.update("Book",values,"name=?",new String[]{"the fuck code"});//如果名字等於這個就可以進行更新了

            }
        });
        Button deleteData= (Button)findViewById(R.id.deletedata);
        deleteData.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
               SQLiteDatabase db=dbHelper.getWritableDatabase();
               ContentValues values=new ContentValues();
               values.put("name","我是傻逼\n");
               db.delete("Book","name=?",new String[]{"the fuck code"});//如果名字等於這個就可以直接刪除了

            }
        });




    }}

4.查詢數據

在咱們的安卓開發當中的SQLiteDatabase類當中還提供了一個query()方法對於數據進行查詢,這個方法非常複雜,最短的一個方法重載也需要傳入7個參數。

主界面:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<Button
    android:id="@+id/creat"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Create database"/>
<Button
    android:id="@+id/add"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Add data"/>
<Button
    android:id="@+id/updata"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Updata data"/>
<Button
    android:id="@+id/deletedata"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Delete data"/>

</LinearLayout>

主活動的查詢代碼如下:

 private void queryStudents() {

        // 相當於 select * from students 語句
        Cursor cursor = mSQLiteDatabase.query(SQLiteDbHelper.TABLE_STUDENT, null,
                "cls_id > ? and id >= 1", new String[]{"3"},
                null, null, null, null);

        // 不斷移動游標獲取值
        while (cursor.moveToNext()) {
            // 直接通過索引獲取欄位值
            int stuId = cursor.getInt(0);

            // 先獲取 name 的索引值,然後再通過索引獲取欄位值
            String stuName = cursor.getString(cursor.getColumnIndex("name"));
            Log.e("", "id: " + stuId + " name: " + stuName);
        }
        // 關閉游標
        cursor.close();
    }

最後我們利用adb工具就可以查看到我們是否成功進行資料庫操作啦!!

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 具體步驟: 1.nginx下載 2.在G:\nginx-1.15.8\conf/nginx.conf改三處路徑:nginx.conf 文件中配置的路徑和埠要映射到vue項目工程 a.改 映射埠: #設定實際的伺服器列表 upstream zp_server1{ server 127.0.0.1: ...
  • Rollup與group by組合使用,可對分組結果進行進一步的彙總。 創建數據表 (1) rollup單個欄位 如按照country欄位進行分組,併在最後追加一條彙總所有country的值 (2) rollup多個欄位 按照gender,country欄位進行分組,並針對每一個country追加一 ...
  • 一、首先生成一個日期表,執行SQL如下: 二、按天統計所需數據SQL如下: 以上統計數據可根據自身統計需求修改。 三、執行效果如下圖: ...
  • [20190312]關於增量檢查點的疑問(補充).txt--//有人問我以前寫一個帖子的問題,關於增量檢查點的問題,鏈接如下:http://blog.itpub.net/267265/viewspace-2136817/--//實際上我自己看以前寫的帖子一下子有點蒙,主要出現low_rba16=0x ...
  • 【遇到問題】 初次進入某個界面時,當頁面中有EditText ,會自動聚焦並彈出軟鍵盤。 【解決方法】 此方法預設不彈出軟鍵盤並不會禁用軟鍵盤 ...
  • 開發平臺:mac pro node版本:v8.11.2 npm版本:6.4.1 react-native版本:0.57.8 native-echarts版本:^0.5.0 目標平臺:android端收銀機,android7.0+ 最近在使用react native進行app的開發工作,rn開發的內容 ...
  • R.java簡單來說就是資源 R.java會自動收錄當前應用中所有的資源,並根據這些資源建立對應的ID,包括:佈局資源、控制項資源、String資源、Drawable資源等 可以理解把所以資源按規則存放在R.java資源里,相當於字典,當文件需要是在引用 引用values中的資源 xml文件引用資源: ...
  • Android程式在創建的時,Android studio就為其構建了基本結構,設計者可在此結構上開發應用程式, manifests :用於存放AndroidManifest.xml文件(又稱清單文件),這個文件是整個項目的配置文件,程式的許可權也在這個文件里配置 程式運行時系統會根據清單文件的配置打 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...