SQLiteQueryBuilder.AppendWhere Method

Definition

Overloads

AppendWhere(ICharSequence)

Append a chunk to the WHERE clause of the query.

AppendWhere(String)

Append a chunk to the WHERE clause of the query.

AppendWhere(ICharSequence)

Append a chunk to the WHERE clause of the query.

[Android.Runtime.Register("appendWhere", "(Ljava/lang/CharSequence;)V", "GetAppendWhere_Ljava_lang_CharSequence_Handler")]
public virtual void AppendWhere (Java.Lang.ICharSequence inWhere);
[<Android.Runtime.Register("appendWhere", "(Ljava/lang/CharSequence;)V", "GetAppendWhere_Ljava_lang_CharSequence_Handler")>]
abstract member AppendWhere : Java.Lang.ICharSequence -> unit
override this.AppendWhere : Java.Lang.ICharSequence -> unit

Parameters

inWhere
ICharSequence

the chunk of text to append to the WHERE clause.

Attributes

Remarks

Append a chunk to the WHERE clause of the query. All chunks appended are surrounded by parenthesis and ANDed with the selection passed to #query. The final WHERE clause looks like:

WHERE (&lt;append chunk 1>&lt;append chunk2>) AND (&lt;query() selection parameter>)

Java documentation for android.database.sqlite.SQLiteQueryBuilder.appendWhere(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

AppendWhere(String)

Append a chunk to the WHERE clause of the query.

public void AppendWhere (string inWhere);
member this.AppendWhere : string -> unit

Parameters

inWhere
String

the chunk of text to append to the WHERE clause.

Remarks

Append a chunk to the WHERE clause of the query. All chunks appended are surrounded by parenthesis and ANDed with the selection passed to #query. The final WHERE clause looks like:

WHERE (&lt;append chunk 1>&lt;append chunk2>) AND (&lt;query() selection parameter>)

Java documentation for android.database.sqlite.SQLiteQueryBuilder.appendWhere(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to