Android.Database.Sqlite.SQLiteQueryBuilder.AppendWhereEscapeString Method
Append a chunk to the WHERE clause of the query.

Syntax

[Android.Runtime.Register("appendWhereEscapeString", "(Ljava/lang/String;)V", "GetAppendWhereEscapeString_Ljava_lang_String_Handler")]
public virtual void AppendWhereEscapeString (string inWhere)

Parameters

inWhere
the chunk of text to append to the WHERE clause. it will be escaped to avoid SQL injection attacks

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 SQLiteQueryBuilder.Query(SQLiteDatabase, System.String[], System.String[], System.String[], System.String[], System.String[], System.String[]). The final WHERE clause looks like: WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)

[Android Documentation]

Requirements

Namespace: Android.Database.Sqlite
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1