ICallableStatement.GetLong Method

Definition

Overloads

GetLong(Int32)

Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.

GetLong(String)

Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.

GetLong(Int32)

Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.

[Android.Runtime.Register("getLong", "(I)J", "GetGetLong_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public long GetLong (int parameterIndex);
[<Android.Runtime.Register("getLong", "(I)J", "GetGetLong_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetLong : int -> int64

Parameters

parameterIndex
Int32

the first parameter is 1, the second is 2, and so on

Returns

the parameter value. If the value is SQL NULL, the result is 0.

Attributes

Exceptions

if a database error occurs.

Remarks

Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.

Java documentation for java.sql.CallableStatement.getLong(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

GetLong(String)

Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.

[Android.Runtime.Register("getLong", "(Ljava/lang/String;)J", "GetGetLong_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public long GetLong (string? parameterName);
[<Android.Runtime.Register("getLong", "(Ljava/lang/String;)J", "GetGetLong_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetLong : string -> int64

Parameters

parameterName
String

the name of the parameter

Returns

the parameter value. If the value is SQL NULL, the result is 0.

Attributes

Exceptions

if a database error occurs.

Remarks

Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.

Added in 1.4.

Java documentation for java.sql.CallableStatement.getLong(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