SQLiteQueryBuilder.AppendWhere Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AppendWhere(ICharSequence) |
Append a chunk to the |
AppendWhere(String) |
Append a chunk to the |
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 AND
ed with the selection passed to #query
. The final WHERE
clause looks like:
WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
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 AND
ed with the selection passed to #query
. The final WHERE
clause looks like:
WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
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.