ICallableStatement.GetRowId Method

Definition

Overloads

GetRowId(Int32)

Retrieves the value of the designated JDBC <code>ROWID</code> parameter as a <code>java.

GetRowId(String)

Retrieves the value of the designated JDBC <code>ROWID</code> parameter as a <code>java.

GetRowId(Int32)

Retrieves the value of the designated JDBC <code>ROWID</code> parameter as a <code>java.

[Android.Runtime.Register("getRowId", "(I)Ljava/sql/RowId;", "GetGetRowId_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IRowId? GetRowId (int parameterIndex);
[<Android.Runtime.Register("getRowId", "(I)Ljava/sql/RowId;", "GetGetRowId_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetRowId : int -> Java.Sql.IRowId

Parameters

parameterIndex
Int32

the first parameter is 1, the second is 2,...

Returns

IRowId

a <code>RowId</code> object that represents the JDBC <code>ROWID</code> value is used as the designated parameter. If the parameter contains a SQL <code>NULL</code>, then a <code>null</code> value is returned.

Attributes

Exceptions

if a database error occurs.

Remarks

Java documentation for java.sql.CallableStatement.getRowId(int).

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

GetRowId(String)

Retrieves the value of the designated JDBC <code>ROWID</code> parameter as a <code>java.

[Android.Runtime.Register("getRowId", "(Ljava/lang/String;)Ljava/sql/RowId;", "GetGetRowId_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IRowId? GetRowId (string? parameterName);
[<Android.Runtime.Register("getRowId", "(Ljava/lang/String;)Ljava/sql/RowId;", "GetGetRowId_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetRowId : string -> Java.Sql.IRowId

Parameters

parameterName
String

the name of the parameter

Returns

IRowId

a <code>RowId</code> object that represents the JDBC <code>ROWID</code> value is used as the designated parameter. If the parameter contains a SQL <code>NULL</code>, then a <code>null</code> value is returned.

Attributes

Exceptions

if a database error occurs

Remarks

Java documentation for java.sql.CallableStatement.getRowId(java.lang.String).

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