DatabaseUtils.CursorIntToContentValuesIfPresent 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.
Reads a Integer out of a column in a Cursor and writes it to a ContentValues.
[Android.Runtime.Register("cursorIntToContentValuesIfPresent", "(Landroid/database/Cursor;Landroid/content/ContentValues;Ljava/lang/String;)V", "")]
public static void CursorIntToContentValuesIfPresent (Android.Database.ICursor? cursor, Android.Content.ContentValues? values, string? column);
[<Android.Runtime.Register("cursorIntToContentValuesIfPresent", "(Landroid/database/Cursor;Landroid/content/ContentValues;Ljava/lang/String;)V", "")>]
static member CursorIntToContentValuesIfPresent : Android.Database.ICursor * Android.Content.ContentValues * string -> unit
Parameters
- cursor
- ICursor
The cursor to read from
- values
- ContentValues
The ContentValues
to put the value into
- column
- String
The column to read
- Attributes
Remarks
Reads a Integer out of a column in a Cursor and writes it to a ContentValues. Adds nothing to the ContentValues if the column isn't present or if its value is null.
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.