web-dev-qa-db-ja.com

Android:ContentResolverのDistinctおよびGroupBy

DISTINCTおよび/またはGROUPBYContentResolverベースのクエリに追加する正しい方法は何ですか?

現在、特別なケースごとにカスタムURIを作成する必要があります。

もっと良い方法はありますか?

(私はまだ最小公分母として1.5をプログラムしています)

31
Bostone

誰も答えに来ていないので、私はこれをどのように解決したかを話します。基本的には、各ケースのカスタムURIを作成し、selectionパラメーターで基準を渡します。次にContentProvider#queryケースを特定し、テーブル名と選択パラメータに基づいて生のクエリを作成します。

ここに簡単な例があります:

switch (URI_MATCHER.match(uri)) {
    case TYPES:
        table = TYPES_TABLE;
        break;
    case TYPES_DISTINCT:
        return db.rawQuery("SELECT DISTINCT type FROM types", null);
    default:
        throw new IllegalArgumentException("Unknown URI " + uri);
    }
    return db.query(table, null, selection, selectionArgs, null, null, null);
14
Bostone

ContentResolverをクエリするときに、Nice hackを実行できます。以下を使用します。

String selection = Models.SOMETHING + "=" + something + ") GROUP BY (" + Models.TYPE;
40
kzotin

SELECTでDISTINCTを複数の列で使用する場合は、GROUP BYを使用する必要があります。
これを使用するためのContentResolver.queryに対するミニハック:

Uri uri = Uri.parse("content://sms/inbox");
        Cursor c = getContentResolver().query(uri, 
            new String[]{"DISTINCT address","body"}, //DISTINCT
            "address IS NOT NULL) GROUP BY (address", //GROUP BY
            null, null);
        if(c.moveToFirst()){
            do{
                Log.v("from", "\""+c.getString(c.getColumnIndex("address"))+"\"");
                Log.v("text", "\""+c.getString(c.getColumnIndex("body"))+"\"");

            } while(c.moveToNext());
        }

このコードは、デバイスの受信トレイから送信者ごとに最後のSMSを1つ選択します。
注:GROUP BYの前に、少なくとも1つの条件を常に記述する必要があります。 ContentResolver.queryメソッド内の結果SQLクエリ文字列は次のようになります。

SELECT DISTINCT address, body FROM sms WHERE (type=1) AND (address IS NOT NULL) GROUP BY (address) 
14
P-A

オーバーライドされたContentProviderクエリメソッドには、distinctを使用するための特定のURIマッピングがあります。

次に、SQLiteQueryBuilderを使用してsetDistinct(boolean)メソッドを呼び出します。

@Override
public Cursor query(Uri uri, String[] projection, String selection,
        String[] selectionArgs, String sortOrder)
{
    SQLiteQueryBuilder qb = new SQLiteQueryBuilder();

    boolean useDistinct = false;

    switch (sUriMatcher.match(uri))
    {
    case YOUR_URI_DISTINCT:
        useDistinct = true;
    case YOUR_URI:
        qb.setTables(YOUR_TABLE_NAME);
        qb.setProjectionMap(sYourProjectionMap);
        break;

    default:
        throw new IllegalArgumentException("Unknown URI " + uri);
    }

    // If no sort order is specified use the default
    String orderBy;
    if (TextUtils.isEmpty(sortOrder))
    {
        orderBy = DEFAULT_SORT_ORDER;
    }
    else
    {
        orderBy = sortOrder;
    }
    // Get the database and run the query
    SQLiteDatabase db = mDBHelper.getReadableDatabase();
            // THIS IS THE IMPORTANT PART!
    qb.setDistinct(useDistinct);
    Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);

    if (c != null)
    {
        // Tell the cursor what uri to watch, so it knows when its source data changes
        c.setNotificationUri(getContext().getContentResolver(), uri);
    }

    return c;
}
13
Brady Kroupa

私はGroup Byを使用していませんが、コンテンツリゾルバークエリでDistinctを使用しました。

Cursor cursor = contentResolver .query(YOUR_URI, new String[] {"Distinct "+ YOUR_COLUMN_NAME}, null, null, null);

6
W00di

プロジェクションにDistinctキーワードを追加することも私にとってはうまくいきましたが、それは、distinctキーワードが最初の引数である場合にのみ機能しました。

String[] projection = new String[]{"DISTINCT " + DBConstants.COLUMN_UUID, ... };
0
TacoEater

条件によっては、「distinct(COLUMN_NAME)」を選択として使用でき、完全に機能します。ただし、一部の条件では、例外が発生します。

例外が発生した場合は、HashSetを使用して列の値を格納します。

0
Mikonos
// getting sender list from messages into spinner View
    Spinner phoneListView = (Spinner) findViewById(R.id.phone_list);
    Uri uri = Uri.parse("content://sms/inbox");     
    Cursor c = getContentResolver().query(uri, new String[]{"Distinct address"}, null, null, null);
    List <String> list;
    list= new ArrayList<String>();
    list.clear();
    int msgCount=c.getCount();
    if(c.moveToFirst()) {
        for(int ii=0; ii < msgCount; ii++) {
            list.add(c.getString(c.getColumnIndexOrThrow("address")).toString());
            c.moveToNext();
        }
    }
    phoneListView.setAdapter(new ArrayAdapter<String>(BankActivity.this, Android.R.layout.simple_dropdown_item_1line, list));
0
Khizhny Andrey