SQLiteDatabase.MarkTableSyncable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
MarkTableSyncable(String, String) |
Obsolete.
Mark this table as syncable. |
MarkTableSyncable(String, String, String) |
Obsolete.
Mark this table as syncable, with the _sync_dirty residing in another table. |
MarkTableSyncable(String, String)
Caution
deprecated
Mark this table as syncable.
[Android.Runtime.Register("markTableSyncable", "(Ljava/lang/String;Ljava/lang/String;)V", "GetMarkTableSyncable_Ljava_lang_String_Ljava_lang_String_Handler")]
[System.Obsolete("deprecated")]
public virtual void MarkTableSyncable (string? table, string? deletedTable);
[<Android.Runtime.Register("markTableSyncable", "(Ljava/lang/String;Ljava/lang/String;)V", "GetMarkTableSyncable_Ljava_lang_String_Ljava_lang_String_Handler")>]
[<System.Obsolete("deprecated")>]
abstract member MarkTableSyncable : string * string -> unit
override this.MarkTableSyncable : string * string -> unit
Parameters
- table
- String
the table to mark as syncable
- deletedTable
- String
The deleted table that corresponds to the syncable table
- Attributes
Remarks
Mark this table as syncable. When an update occurs in this table the _sync_dirty field will be set to ensure proper syncing operation.
This member is deprecated. This method no longer serves any useful purpose and has been deprecated.
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
MarkTableSyncable(String, String, String)
Caution
deprecated
Mark this table as syncable, with the _sync_dirty residing in another table.
[Android.Runtime.Register("markTableSyncable", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetMarkTableSyncable_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")]
[System.Obsolete("deprecated")]
public virtual void MarkTableSyncable (string? table, string? foreignKey, string? updateTable);
[<Android.Runtime.Register("markTableSyncable", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetMarkTableSyncable_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")>]
[<System.Obsolete("deprecated")>]
abstract member MarkTableSyncable : string * string * string -> unit
override this.MarkTableSyncable : string * string * string -> unit
Parameters
- table
- String
an update on this table will trigger a sync time removal
- foreignKey
- String
this is the column in table whose value is an _id in updateTable
- updateTable
- String
this is the table that will have its _sync_dirty
- Attributes
Remarks
Mark this table as syncable, with the _sync_dirty residing in another table. When an update occurs in this table the _sync_dirty field of the row in updateTable with the _id in foreignKey will be set to ensure proper syncing operation.
This member is deprecated. This method no longer serves any useful purpose and has been deprecated.
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.