Android.Database.Sqlite.SQLiteDatabase.MarkTableSyncable Method
Mark this table as syncable, with the _sync_dirty residing in another table.

Syntax

[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)

Parameters

table
an update on this table will trigger a sync time removal
foreignKey
this is the column in table whose value is an _id in updateTable
updateTable
this is the table that will have its _sync_dirty

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.

[Android Documentation]

Requirements

Namespace: Android.Database.Sqlite
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1