IResultSet.RowDeleted 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.
Retrieves whether a row has been deleted.
[Android.Runtime.Register("rowDeleted", "()Z", "GetRowDeletedHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool RowDeleted ();
[<Android.Runtime.Register("rowDeleted", "()Z", "GetRowDeletedHandler:Java.Sql.IResultSetInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member RowDeleted : unit -> bool
Returns
true
if the current row is detected to
have been deleted by the owner or another; false
otherwise
- Attributes
Exceptions
if a database error happens.
Remarks
Retrieves whether a row has been deleted. A deleted row may leave a visible "hole" in a result set. This method can be used to detect holes in a result set. The value returned depends on whether or not this ResultSet
object can detect deletions.
<strong>Note:</strong> Support for the rowDeleted
method is optional with a result set concurrency of CONCUR_READ_ONLY
Added in 1.2.
Java documentation for java.sql.ResultSet.rowDeleted()
.
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.