ICallableStatement.GetArray Method

Definition

Overloads

GetArray(Int32)

Retrieves the value of the designated JDBC <code>ARRAY</code> parameter as an java.sql.Array object in the Java programming language.

GetArray(String)

Retrieves the value of a JDBC <code>ARRAY</code> parameter as an java.sql.Array object in the Java programming language.

GetArray(Int32)

Retrieves the value of the designated JDBC <code>ARRAY</code> parameter as an java.sql.Array object in the Java programming language.

[Android.Runtime.Register("getArray", "(I)Ljava/sql/Array;", "GetGetArray_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IArray? GetArray (int parameterIndex);
[<Android.Runtime.Register("getArray", "(I)Ljava/sql/Array;", "GetGetArray_IHandler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetArray : int -> Java.Sql.IArray

Parameters

parameterIndex
Int32

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

Returns

IArray

the parameter value as an <code>Array</code> object in the Java programming language. If the value was SQL <code>NULL</code>, the value <code>null</code> is returned.

Attributes

Exceptions

if a database error occurs.

Remarks

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

GetArray(String)

Retrieves the value of a JDBC <code>ARRAY</code> parameter as an java.sql.Array object in the Java programming language.

[Android.Runtime.Register("getArray", "(Ljava/lang/String;)Ljava/sql/Array;", "GetGetArray_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IArray? GetArray (string? parameterName);
[<Android.Runtime.Register("getArray", "(Ljava/lang/String;)Ljava/sql/Array;", "GetGetArray_Ljava_lang_String_Handler:Java.Sql.ICallableStatementInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetArray : string -> Java.Sql.IArray

Parameters

parameterName
String

the name of the parameter

Returns

IArray

the parameter value as an <code>Array</code> object in Java programming language. If the value was SQL <code>NULL</code>, the value <code>null</code> is returned.

Attributes

Exceptions

if there is a problem accessing the database.

Remarks

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