public
final
class
DatabaseUtilsCompat
extends Object
| java.lang.Object | |
| ↳ | android.support.v4.database.DatabaseUtilsCompat |
Helper for accessing features in DatabaseUtils
introduced after API level 4 in a backwards compatible fashion.
Public methods | |
|---|---|
static
String[]
|
appendSelectionArgs(String[] originalValues, String[] newValues)
Appends one set of selection args to another. |
static
String
|
concatenateWhere(String a, String b)
Concatenates two SQL WHERE clauses, handling empty or null values. |
Inherited methods | |
|---|---|
java.lang.Object
| |
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.
| Parameters | |
|---|---|
originalValues |
String
|
newValues |
String
|
| Returns | |
|---|---|
String[] |
|