getArray(long, int, Map) - Advanced SQL Engine - Teradata Database

SQL External Routine Programming

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-24
dita:mapPath
qwr1571437338192.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1147
lifecycle
previous
Product Category
Teradata Vantage™

Purpose

Retrieves a slice of the SQL ARRAY value designated by this Array object, beginning with the specified index and containing up to count successive elements of the SQL array.
  • Teradata only supports standard mapping. Any custom map provided in the call will be ignored.
  • This method is supported for 1-D arrays only.

Syntax

Object getArray(long  index,
                int  count,
                Map<String,Class<?>>  map)
                throws SQLException

Parameters

index
The array index of the first element to retrieve. The first element is at index 1.
count
The number of successive SQL array elements to retrieve.
map
A java.util.Map object that contains SQL type names and the classes in the Java programming language to which they are mapped.

Return Value

An array containing up to count consecutive elements of the SQL ARRAY value, beginning with element index.

Note that this routine may return less than count number of elements in the array. Any uninitialized elements in the array are not returned.

Exceptions

Throws SQLException in the following cases:

  • The method is called for an N-D array. A database specific code “9743(ERRUDFJAVARRAY)< <Method> cannot be called for N-D Arrays >” is returned.
  • An error occurs while attempting to access the array. A database specific code “9743 (ERRUDFJAVARRAY)<Failed to retrieve elements of the array>” is returned.