getResultSet(long, int, Map) - Analytics Database - Teradata Vantage

SQL External Routine Programming

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-03-30
dita:mapPath
iiv1628111441820.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
qnu1472247494689
lifecycle
latest
Product Category
Teradata Vantage™

Retrieves a result set holding the elements of the subarray that starts at index and contains up to count successive elements.

  • Teradata only supports standard mapping. Any custom map provided in the call will be ignored.
  • This method only supports 1-D arrays.

A ResultSet object containing up to count consecutive elements of the SQL array designated by this Array object, starting at index.

The result set has one row for each element of the SQL array with the first row containing the element at index. The result set has up to count rows in ascending order based on the indices. Each row has two columns:
  • The first column stores the index into the array for that element.
  • The second column stores the element value.

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

Syntax

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

Syntax Elements

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
The Map object that contains the mapping of SQL type names to classes in the Java programming language.

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 result set of Array elements>” is returned.