Android.Database.Sqlite.SQLiteQueryBuilder Members

The members of Android.Database.Sqlite.SQLiteQueryBuilder are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

Tablesstring. Returns the list of tables being queried

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

static
AppendColumns(Java.Lang.StringBuilder, string[])
Add the names that are non-null in columns to s, separating them with commas.
AppendWhere(Java.Lang.ICharSequence)
Append a chunk to the WHERE clause of the query.
AppendWhere(string)
Documentation for this section has not yet been entered.
AppendWhereEscapeString(string)
Append a chunk to the WHERE clause of the query.
BuildQuery(string[], string, string, string, string, string) : string
Construct a SELECT statement suitable for use in a group of SELECT statements that will be joined through UNION operators in buildUnionQuery.
BuildQuery(string[], string, string[], string, string, string, string) : string
static
BuildQueryString(bool, string, string[], string, string, string, string, string) : string
Build an SQL query string from the given clauses.
BuildUnionQuery(string[], string, string) : string
Given a set of subqueries, all of which are SELECT statements, construct a query that returns the union of what those subqueries return.
BuildUnionSubQuery(string, string[], ICollection<string>, int, string, string, string, string) : string
Documentation for this section has not yet been entered.
BuildUnionSubQuery(string, string[], ICollection<string>, int, string, string, string[], string, string) : string
Documentation for this section has not yet been entered.
Query(SQLiteDatabase, string[], string, string[], string, string, string) : Android.Database.ICursor
Perform a query by combining all current settings and the information passed into this method.
Query(SQLiteDatabase, string[], string, string[], string, string, string, string) : Android.Database.ICursor
Perform a query by combining all current settings and the information passed into this method.
Query(SQLiteDatabase, string[], string, string[], string, string, string, string, Android.OS.CancellationSignal) : Android.Database.ICursor
Perform a query by combining all current settings and the information passed into this method.
SetCursorFactory(SQLiteDatabase.ICursorFactory)
Sets the cursor factory to be used for the query.
SetDistinct(bool)
Mark the query as DISTINCT.
SetProjectionMap(IDictionary<string, string>)
Documentation for this section has not yet been entered.
SetStrict(bool)
When set, the selection is verified against malicious arguments.