Condividi tramite


DatabaseUtils.DumpCursor Method

Definition

Overloads

DumpCursor(ICursor)

Prints the contents of a Cursor to System.

DumpCursor(ICursor, PrintStream)

Prints the contents of a Cursor to a PrintSteam.

DumpCursor(ICursor, StringBuilder)

Prints the contents of a Cursor to a StringBuilder.

DumpCursor(ICursor)

Prints the contents of a Cursor to System.

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

Parameters

cursor
ICursor

the cursor to print

Attributes

Remarks

Prints the contents of a Cursor to System.out. The position is restored after printing.

Java documentation for android.database.DatabaseUtils.dumpCursor(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

DumpCursor(ICursor, PrintStream)

Prints the contents of a Cursor to a PrintSteam.

[Android.Runtime.Register("dumpCursor", "(Landroid/database/Cursor;Ljava/io/PrintStream;)V", "")]
public static void DumpCursor (Android.Database.ICursor? cursor, Java.IO.PrintStream? stream);
[<Android.Runtime.Register("dumpCursor", "(Landroid/database/Cursor;Ljava/io/PrintStream;)V", "")>]
static member DumpCursor : 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 to a PrintSteam. The position is restored after printing.

Java documentation for android.database.DatabaseUtils.dumpCursor(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

DumpCursor(ICursor, StringBuilder)

Prints the contents of a Cursor to a StringBuilder.

[Android.Runtime.Register("dumpCursor", "(Landroid/database/Cursor;Ljava/lang/StringBuilder;)V", "")]
public static void DumpCursor (Android.Database.ICursor? cursor, Java.Lang.StringBuilder? sb);
[<Android.Runtime.Register("dumpCursor", "(Landroid/database/Cursor;Ljava/lang/StringBuilder;)V", "")>]
static member DumpCursor : 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 to a StringBuilder. The position is restored after printing.

Java documentation for android.database.DatabaseUtils.dumpCursor(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