Share via


IRowId.ToString Method

Definition

Returns a String representing the value of the SQL ROWID designated by this java.sql.RowId object.

[Android.Runtime.Register("toString", "()Ljava/lang/String;", "GetToStringHandler:Java.Sql.IRowIdInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public string? ToString ();
[<Android.Runtime.Register("toString", "()Ljava/lang/String;", "GetToStringHandler:Java.Sql.IRowIdInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member ToString : unit -> string

Returns

a String whose format is determined by the driver supplying the connection, representing the value of the ROWID designated by this java.sql.RowId object.

Attributes

Remarks

Returns a String representing the value of the SQL ROWID designated by this java.sql.RowId object.

Like java.sql.Date.toString() returns the contents of its DATE as the String "2004-03-17" rather than as DATE literal in SQL (which would have been the String DATE "2004-03-17"), toString() returns the contents of its ROWID in a form specific to the driver supplying the connection, and possibly not as a ROWID literal.

Java documentation for java.sql.RowId.toString().

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