Condividi tramite


SQLiteRawStatement.Step Method

Definition

Step to the next result row.

[Android.Runtime.Register("step", "()Z", "", ApiSince=35)]
public bool Step ();
[<Android.Runtime.Register("step", "()Z", "", ApiSince=35)>]
member this.Step : unit -> bool

Returns

True if a row is available and false otherwise.

Attributes

Remarks

Step to the next result row. This returns true if the statement stepped to a new row, and false if the statement is done. The method throws on any other result, including a busy or locked database. If WAL is enabled then the database should never be locked or busy.

Java documentation for android.database.sqlite.SQLiteRawStatement.step().

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