to top
Android APIs
public class

DatabaseUtilsCompat

extends Object
java.lang.Object
   ↳ android.support.v4.database.DatabaseUtilsCompat

Class Overview

Helper for accessing features in DatabaseUtils introduced after API level 4 in a backwards compatible fashion.

Summary

Public Methods

? Examples
static String[] appendSelectionArgs( String[] originalValues, String[] newValues)
Appends one set of selection args to another.

? Examples
static String concatenateWhere( String a, String b)
Concatenates two SQL WHERE clauses, handling empty or null values.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static String[] appendSelectionArgs (String[] originalValues, String[] newValues)

Appends one set of selection args to another. This is useful when adding a selection argument to a user provided set.

public static String concatenateWhere (String a, String b)

Concatenates two SQL WHERE clauses, handling empty or null values.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.