Android.Database.Sqlite.SQLiteQueryBuilder: Method Members

The methods of Android.Database.Sqlite.SQLiteQueryBuilder are listed below. For a list of all members, see the SQLiteQueryBuilder Members list.

See Also: Inherited members from Java.Lang.Object

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.