Aracılığıyla paylaş


DatabaseUtils.DumpCurrentRow Method

Definition

Overloads

DumpCurrentRow(ICursor)

Prints the contents of a Cursor's current row to System.

DumpCurrentRow(ICursor, PrintStream)

Prints the contents of a Cursor's current row to a PrintSteam.

DumpCurrentRow(ICursor, StringBuilder)

Prints the contents of a Cursor's current row to a StringBuilder.

DumpCurrentRow(ICursor)

Prints the contents of a Cursor's current row to System.

[Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;)V", "")]
public static void DumpCurrentRow (Android.Database.ICursor? cursor);
[<Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;)V", "")>]
static member DumpCurrentRow : Android.Database.ICursor -> unit

Parameters

cursor
ICursor

the cursor to print from

Attributes

Remarks

Prints the contents of a Cursor's current row to System.out.

Java documentation for android.database.DatabaseUtils.dumpCurrentRow(android.database.Cursor).

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

DumpCurrentRow(ICursor, PrintStream)

Prints the contents of a Cursor's current row to a PrintSteam.

[Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;Ljava/io/PrintStream;)V", "")]
public static void DumpCurrentRow (Android.Database.ICursor? cursor, Java.IO.PrintStream? stream);
[<Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;Ljava/io/PrintStream;)V", "")>]
static member DumpCurrentRow : Android.Database.ICursor * Java.IO.PrintStream -> unit

Parameters

cursor
ICursor

the cursor to print

stream
PrintStream

the stream to print to

Attributes

Remarks

Prints the contents of a Cursor's current row to a PrintSteam.

Java documentation for android.database.DatabaseUtils.dumpCurrentRow(android.database.Cursor, java.io.PrintStream).

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

DumpCurrentRow(ICursor, StringBuilder)

Prints the contents of a Cursor's current row to a StringBuilder.

[Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;Ljava/lang/StringBuilder;)V", "")]
public static void DumpCurrentRow (Android.Database.ICursor? cursor, Java.Lang.StringBuilder? sb);
[<Android.Runtime.Register("dumpCurrentRow", "(Landroid/database/Cursor;Ljava/lang/StringBuilder;)V", "")>]
static member DumpCurrentRow : Android.Database.ICursor * Java.Lang.StringBuilder -> unit

Parameters

cursor
ICursor

the cursor to print

sb
StringBuilder

the StringBuilder to print to

Attributes

Remarks

Prints the contents of a Cursor's current row to a StringBuilder.

Java documentation for android.database.DatabaseUtils.dumpCurrentRow(android.database.Cursor, java.lang.StringBuilder).

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