ICallableStatement.GetRowId 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.
Overloads
GetRowId(Int32) |
Retrieves the value of the designated JDBC |
GetRowId(String) |
Retrieves the value of the designated JDBC |
GetRowId(Int32)
Retrieves the value of the designated JDBC ROWID
parameter as a
java.sql.RowId
object.
[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
a RowId
object that represents the JDBC ROWID
value is used as the designated parameter. If the parameter contains
a SQL NULL
, then a null
value is returned.
- Attributes
Exceptions
if a database error occurs.
Remarks
Retrieves the value of the designated JDBC ROWID
parameter as a java.sql.RowId
object.
Added in 1.6.
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 ROWID
parameter as a
java.sql.RowId
object.
[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
a RowId
object that represents the JDBC ROWID
value is used as the designated parameter. If the parameter contains
a SQL NULL
, then a null
value is returned.
- Attributes
Exceptions
if a database error occurs
Remarks
Retrieves the value of the designated JDBC ROWID
parameter as a java.sql.RowId
object.
Added in 1.6.
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.