SQLiteQueryBuilder.Tables Property

Definition

Returns the list of tables being queried -or- Sets the list of tables to query.

public virtual string? Tables { [Android.Runtime.Register("getTables", "()Ljava/lang/String;", "GetGetTablesHandler")] get; [Android.Runtime.Register("setTables", "(Ljava/lang/String;)V", "GetSetTables_Ljava_lang_String_Handler")] set; }
[<get: Android.Runtime.Register("getTables", "()Ljava/lang/String;", "GetGetTablesHandler")>]
[<set: Android.Runtime.Register("setTables", "(Ljava/lang/String;)V", "GetSetTables_Ljava_lang_String_Handler")>]
member this.Tables : string with get, set

Property Value

the list of tables being queried

Attributes

Remarks

Property getter documentation:

Returns the list of tables being queried

Java documentation for android.database.sqlite.SQLiteQueryBuilder.getTables().

Property setter documentation:

Sets the list of tables to query. Multiple tables can be specified to perform a join. For example: setTables("foo, bar") setTables("foo LEFT OUTER JOIN bar ON (foo.id = bar.foo_id)")

Java documentation for android.database.sqlite.SQLiteQueryBuilder.setTables(java.lang.String).

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