Android.Database.Sqlite.SQLiteDatabase.Delete Method
Convenience method for deleting rows in the database.

Syntax

[Android.Runtime.Register("delete", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)I", "GetDelete_Ljava_lang_String_Ljava_lang_String_arrayLjava_lang_String_Handler")]
public virtual int Delete (string table, string whereClause, string[] whereArgs)

Parameters

table
the table to delete from
whereClause
the optional WHERE clause to apply when deleting. Passing null will delete all rows.
whereArgs
You may include ?s in the where clause, which will be replaced by the values from whereArgs. The values will be bound as Strings.

Returns

Documentation for this section has not yet been entered.

Remarks

Convenience method for deleting rows in the database.

[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