Android
 Computer >> コンピューター >  >> プログラミング >> Android

Android SQLiteでDISTINCTとCOUNTを使う方法【サンプルコード付きで解説】

まず前提として、AndroidにおけるSQLiteデータベースについて簡単に説明します。SQLiteはオープンソースのSQLデータベースで、デバイス上のテキストファイルにデータを保存します。Androidには標準でSQLiteの実装が組み込まれており、リレーショナルデータベースの機能をすべてサポートしています。また、JDBCやODBCのような接続設定が一切不要で、手軽に利用できるのも大きな特徴です。

本記事では、AndroidのSQLiteでDISTINCTCOUNTを組み合わせて使い、重複を除いたレコード数を取得する方法を、実際のサンプルコードとともに段階的に解説します。

ステップ1:新規プロジェクトの作成

Android Studioで新しいプロジェクトを作成します。メニューから「File」→「New Project」を選択し、必要事項を入力してプロジェクトを作成してください。

ステップ2:レイアウトファイル(activity_main.xml)の作成

res/layout/activity_main.xmlに以下のコードを追加します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity"
   android:orientation="vertical">
   <EditText
      android:id="@+id/name"
      android:layout_width="match_parent"
      android:hint="Enter Name"
      android:layout_height="wrap_content" />
   <EditText
      android:id="@+id/salary"
      android:layout_width="match_parent"
      android:inputType="numberDecimal"
      android:hint="Enter Salary"
      android:layout_height="wrap_content" />
   <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content">
      <Button
         android:id="@+id/save"
         android:text="Save"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content" />
      <Button
         android:id="@+id/refresh"
         android:text="Refresh"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content" />
      <Button
         android:id="@+id/udate"
         android:text="Update"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content" />
      <Button
         android:id="@+id/Delete"
         android:text="DeleteALL"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content" />
   </LinearLayout>

   <ListView
      android:id="@+id/listView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
   </ListView>
</LinearLayout>

このレイアウトでは、名前(name)と給与(salary)を入力するためのEditTextを2つ配置しています。「Save」ボタンをタップすると入力したデータがSQLiteデータベースに保存され、「Refresh」ボタンでListViewの表示内容を更新できる構成になっています。

ステップ3:MainActivity.javaの実装

src/MainActivity.javaに以下のコードを記述します。

package com.example.andy.myapplication;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {
   Button save, refresh;
   EditText name, salary;
   ArrayAdapter arrayAdapter;
   private ListView listView;

   @Override
   protected void onCreate(Bundle readdInstanceState) {
      super.onCreate(readdInstanceState);
      setContentView(R.layout.activity_main);
      final DatabaseHelper helper = new DatabaseHelper(this);
      final ArrayList array_list = helper.getAllCotacts();
      name = findViewById(R.id.name);
      salary = findViewById(R.id.salary);
      listView = findViewById(R.id.listView);
      arrayAdapter = new ArrayAdapter(MainActivity.this, android.R.layout.simple_list_item_1, array_list);
      listView.setAdapter(arrayAdapter);
      findViewById(R.id.Delete).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            if (helper.delete()) {
               Toast.makeText(MainActivity.this, "Deleted", Toast.LENGTH_LONG).show();
            } else {
               Toast.makeText(MainActivity.this, "NOT Deleted", Toast.LENGTH_LONG).show();
            }
         }
      });
      findViewById(R.id.udate).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            if (!name.getText().toString().isEmpty() && !salary.getText().toString().isEmpty()) {
               if (helper.update(name.getText().toString(), salary.getText().toString())) {
                  Toast.makeText(MainActivity.this, "Updated", Toast.LENGTH_LONG).show();
               } else {
                  Toast.makeText(MainActivity.this, "NOT Updated",
                  Toast.LENGTH_LONG).show();
               }
            } else {
               name.setError("Enter NAME");
               salary.setError("Enter Salary");
            }
         }
      });

      findViewById(R.id.refresh).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            array_list.clear();
            array_list.addAll(helper.getAllCotacts());
            arrayAdapter.notifyDataSetChanged();
            listView.invalidateViews();
            listView.refreshDrawableState();
         }
      });

      findViewById(R.id.save).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            if (!name.getText().toString().isEmpty() && !salary.getText().toString().isEmpty()) {
               if (helper.insert(name.getText().toString(), salary.getText().toString())) {
                  Toast.makeText(MainActivity.this, "Inserted", Toast.LENGTH_LONG).show();
               } else {
                  Toast.makeText(MainActivity.this, "NOT Inserted", Toast.LENGTH_LONG).show();
               }
            } else {
               name.setError("Enter NAME");
               salary.setError("Enter Salary");
            }
         }
      });
   }
}

ステップ4:DatabaseHelper.javaの実装

src/DatabaseHelper.javaに以下のコードを追加します。

package com.example.andy.myapplication;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import java.io.IOException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;

class DatabaseHelper extends SQLiteOpenHelper {
   public static final String DATABASE_NAME = "salaryDatabase9";
   public static final String CONTACTS_TABLE_NAME = "SalaryDetails";

   public DatabaseHelper(Context context) {
      super(context, DATABASE_NAME, null, 2);
   }

   @Override
   public void onCreate(SQLiteDatabase db) {
      try {
         db.execSQL(
            "create table " + CONTACTS_TABLE_NAME + "(id INTEGER PRIMARY KEY, name text,salary float,datetime default current_timestamp)"
         );
      } catch (SQLiteException e) {
         try {
            throw new IOException(e);
         } catch (IOException e1) {
            e1.printStackTrace();
         }
      }
   }

   @Override
   public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
      db.execSQL("DROP TABLE IF EXISTS " + CONTACTS_TABLE_NAME);
      onCreate(db);
   }
   public boolean insert(String s, String s1) {
      SQLiteDatabase db = this.getWritableDatabase();
      ContentValues contentValues = new ContentValues();
      contentValues.put("name", s);
      contentValues.put("salary", s1);
      db.replace(CONTACTS_TABLE_NAME, null, contentValues);
      return true;
   }
   public ArrayList getAllCotacts() {
      SQLiteDatabase db = this.getReadableDatabase();
      ArrayList<String> array_list = new ArrayList<String>();
      Cursor res = db.rawQuery("select (count(distinct name)) as countRecords from " + CONTACTS_TABLE_NAME, null);
      res.moveToFirst();
      while (res.isAfterLast() == false) {
         if ((res != null) && (res.getCount() > 0))
            array_list.add(res.getString(res.getColumnIndex("countRecords")));
            res.moveToNext();
      }
      return array_list;
   }
   public boolean update(String s, String s1) {
      SQLiteDatabase db = this.getWritableDatabase();
      db.execSQL("UPDATE " + CONTACTS_TABLE_NAME + " SET name = " + "'" + s + "', " + "salary = " + "'" + s1 + "'");
      return true;
   }
   public boolean delete() {
      SQLiteDatabase db = this.getWritableDatabase();
      db.execSQL("DELETE from " + CONTACTS_TABLE_NAME);
      return true;
   }
}

ここで特に注目すべきは、getAllCotacts()メソッド内の次のSQLクエリです。

select (count(distinct name)) as countRecords from SalaryDetails

count(distinct name)とすることで、nameカラムの重複する値を除外したうえで件数をカウントし、その結果を「countRecords」という別名で取得しています。これがDISTINCTとCOUNTを組み合わせた基本的な使い方です。

アプリの実行と結果の確認

それではアプリを実行してみましょう。実機のAndroid端末をパソコンに接続していることを前提としています。Android Studioでプロジェクトのアクティビティファイルを開き、ツールバーの「Run」アイコンをクリックしてください。実行デバイスとして自分のモバイル端末を選択すると、端末に以下のような初期画面が表示されます。

Android SQLiteでDISTINCTとCOUNTを使う方法【サンプルコード付きで解説】

上記の実行結果では、重複を除いたレコードの件数が「2」と表示されていることが確認できます。このように、DISTINCTとCOUNTを組み合わせることで、テーブル内のユニークなデータ件数を簡単に取得することが可能です。

  1. 【Android】SQLiteのtotal_changes()関数で変更されたレコード数を取得する方法

    AndroidにおけるSQLiteデータベースとは具体的な実装例に入る前に、まずAndroidにおけるSQLiteデータベースについて簡単に説明します。SQLiteはオープンソースのSQLデータベースで、デバイス上のテキストファイルにデータを保存します。Androidには標準でSQLiteデータベースの実装が組み込まれており、リレーショナルデータベースの機能をすべてサポートしています。また、このデータベースにアクセスする際、JDBCやODBCのような接続確立は一切不要です。アプリ内から直接利用できる点が大きな特徴となっています。本記事では、SQLiteのtotal_changes()関数を使用

  2. AndroidのSQLiteでCOUNT()関数を使ってレコード件数を取得する方法

    本題に入る前に、AndroidにおけるSQLiteデータベースについて簡単におさらいしておきましょう。SQLiteは、デバイス上のテキストファイルにデータを保存するオープンソースのSQLデータベースであり、Androidには標準でその実装が組み込まれています。SQLiteはリレーショナルデータベースの機能を幅広くサポートしており、JDBCやODBCのような特別な接続設定を行わずに利用できるのが特徴です。この記事では、AndroidのSQLiteでCOUNT()集計関数を使用してレコード件数を取得する方法を、サンプルコードとともに解説します。実装手順ステップ1:新規プロジェクトの作成Androi