Java android.database.sqlite SQLiteQueryBuilder fields, constructors, methods, implement or subclass

Example usage for Java android.database.sqlite SQLiteQueryBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.database.sqlite SQLiteQueryBuilder.

The text is from its open source code.

Constructor

Method

voidappendWhere(@NonNull CharSequence inWhere)
Append a chunk to the WHERE clause of the query.
voidappendWhereEscapeString(@NonNull String inWhere)
Append a chunk to the WHERE clause of the query.
StringbuildQuery(String[] projectionIn, String selection, String groupBy, String having, String sortOrder, String limit)
Construct a SELECT statement suitable for use in a group of SELECT statements that will be joined through UNION operators in buildUnionQuery.
StringbuildQuery(String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit)
StringbuildQueryString(boolean distinct, String tables, String[] columns, String where, String groupBy, String having, String orderBy, String limit)
Build an SQL query string from the given clauses.
Cursorquery(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder)
Perform a query by combining all current settings and the information passed into this method.
Cursorquery(SQLiteDatabase db, String[] projectionIn, String selection, String[] selectionArgs, String groupBy, String having, String sortOrder, String limit)
Perform a query by combining all current settings and the information passed into this method.
voidsetDistinct(boolean distinct)
Mark the query as DISTINCT.
voidsetProjectionMap(Map columnMap)
Sets the projection map for the query.
voidsetStrict(boolean flag)
When set, the selection is verified against malicious arguments.
voidsetTables(String inTables)
Sets the list of tables to query.