Class JdbcArray
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
জেডিবিসি অ্যারে একটি JDBC Array
। এই ক্লাসের ডকুমেন্টেশনের জন্য, java.sql.Array
দেখুন।
পদ্ধতি
পদ্ধতি | রিটার্ন টাইপ | সংক্ষিপ্ত বিবরণ |
---|
free() | void | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#free() দেখুন। |
get Array() | Object | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getArray() দেখুন |
get Array(index, count) | Object | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getArray(long, int) দেখুন। |
get Base Type() | Integer | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getBaseType() দেখুন। |
get Base Type Name() | String | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getBaseTypeName() দেখুন। |
get Result Set() | Jdbc Result Set | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getResultSet() দেখুন। |
get Result Set(index, count) | Jdbc Result Set | এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getResultSet(long, int) দেখুন। |
বিস্তারিত ডকুমেন্টেশন
get Array()
এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getArray()
দেখুন
প্রত্যাবর্তন
Object
- SQL অ্যারে মানের অর্ডারকৃত উপাদান ধারণকারী একটি বস্তু।
get Array(index, count)
এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getArray(long, int)
দেখুন।
পরামিতি
নাম | টাইপ | বর্ণনা |
---|
index | Integer | পুনরুদ্ধার করার জন্য প্রথম উপাদানটির অ্যারে সূচক, যেখানে প্রথম উপাদানটির একটি সূচক রয়েছে 1৷ |
count | Integer | পুনরুদ্ধার করার জন্য ধারাবাহিক SQL অ্যারে উপাদানের সংখ্যা। |
প্রত্যাবর্তন
Object
- একটি অবজেক্ট যাতে নির্দিষ্ট সংখ্যক পরপর এসকিউএল অ্যারে উপাদান থাকে।
get Base Type Name()
এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getBaseTypeName()
দেখুন।
প্রত্যাবর্তন
String
— বিল্ট-ইন বেস টাইপের জন্য ডাটাবেস-নির্দিষ্ট নাম বা অন্যথায় একটি UDT বেস টাইপের জন্য সম্পূর্ণ-যোগ্য SQL টাইপ নাম।
get Result Set(index, count)
এই পদ্ধতির ডকুমেন্টেশনের জন্য, java.sql.Array#getResultSet(long, int)
দেখুন।
পরামিতি
নাম | টাইপ | বর্ণনা |
---|
index | Integer | পুনরুদ্ধার করার জন্য প্রথম উপাদানটির অ্যারে সূচক, যেখানে প্রথম উপাদানটির একটি সূচক রয়েছে 1৷ |
count | Integer | পুনরুদ্ধার করার জন্য ধারাবাহিক SQL অ্যারে উপাদানের সংখ্যা। |
প্রত্যাবর্তন
Jdbc Result Set
— একটি Jdbc Result Set
যাতে নির্দিষ্ট সংখ্যক পরপর SQL অ্যারে উপাদান থাকে।
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003e\u003ccode\u003eJdbcArray\u003c/code\u003e provides methods to interact with SQL arrays within Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eYou can retrieve array elements as an object or a \u003ccode\u003eJdbcResultSet\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eMethods are available to get the base type and name of the array elements.\u003c/p\u003e\n"],["\u003cp\u003eIt's based on the \u003ccode\u003ejava.sql.Array\u003c/code\u003e interface, and detailed documentation is linked for each method.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eJdbcArray\u003c/code\u003e allows freeing up resources associated with the array using the \u003ccode\u003efree()\u003c/code\u003e method.\u003c/p\u003e\n"]]],[],null,["# Class JdbcArray\n\nJdbcArray\n\nA JDBC `Array`. For documentation of this class, see [`java.sql.Array`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html). \n\n### Methods\n\n| Method | Return type | Brief description |\n|--------------------------------------------------------------|--------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [free()](#free()) | `void` | For documentation of this method, see [` java.sql.Array#free()`](http://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#free()). |\n| [getArray()](#getArray()) | `Object` | For documentation of this method, see [` java.sql.Array#getArray()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getArray()) |\n| [getArray(index, count)](#getArray(Integer,Integer)) | `Object` | For documentation of this method, see [`java.sql.Array#getArray(long, int)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getArray(long,%20int)). |\n| [getBaseType()](#getBaseType()) | `Integer` | For documentation of this method, see [` java.sql.Array#getBaseType()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getBaseType()). |\n| [getBaseTypeName()](#getBaseTypeName()) | `String` | For documentation of this method, see [` java.sql.Array#getBaseTypeName()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getBaseTypeName()). |\n| [getResultSet()](#getResultSet()) | [JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) | For documentation of this method, see [` java.sql.Array#getResultSet()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getResultSet()). |\n| [getResultSet(index, count)](#getResultSet(Integer,Integer)) | [JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) | For documentation of this method, see [`java.sql.Array#getResultSet(long, int)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getResultSet(long,%20int)). |\n\nDetailed documentation\n----------------------\n\n### `free()`\n\nFor documentation of this method, see [`\njava.sql.Array#free()`](http://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#free()).\n\n*** ** * ** ***\n\n### `get``Array()`\n\nFor documentation of this method, see [`\njava.sql.Array#getArray()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getArray())\n\n#### Return\n\n\n`Object` --- An object containing the ordered elements of the SQL array value.\n\n*** ** * ** ***\n\n### `get``Array(index, count)`\n\nFor documentation of this method, see [`java.sql.Array#getArray(long, int)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getArray(long,%20int)).\n\n#### Parameters\n\n| Name | Type | Description |\n|---------|-----------|----------------------------------------------------------------------------------------------|\n| `index` | `Integer` | The array index of the first element to retrieve, where the first element has an index of 1. |\n| `count` | `Integer` | The number of successive SQL array elements to retrieve. |\n\n#### Return\n\n\n`Object` --- An object containing up to the specified number of consecutive SQL array elements.\n\n*** ** * ** ***\n\n### `get``Base``Type()`\n\nFor documentation of this method, see [`\njava.sql.Array#getBaseType()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getBaseType()).\n\n#### Return\n\n\n`Integer` --- The [type\ncode](https://docs.oracle.com/javase/6/docs/api/java/sql/Types.html) for the elements in this array.\n\n*** ** * ** ***\n\n### `get``Base``Type``Name()`\n\nFor documentation of this method, see [`\njava.sql.Array#getBaseTypeName()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getBaseTypeName()).\n\n#### Return\n\n\n`String` --- The database-specific name for the built-in base type or else the fully-qualified SQL\ntype name for a base type that is a UDT.\n\n*** ** * ** ***\n\n### `get``Result``Set()`\n\nFor documentation of this method, see [`\njava.sql.Array#getResultSet()`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getResultSet()).\n\n#### Return\n\n\n[JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) --- The [JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) containing one row for each of the elements in the array\ndesignated by this Array object, with the rows in ascending order based on the indices.\n\n*** ** * ** ***\n\n### `get``Result``Set(index, count)`\n\nFor documentation of this method, see [`java.sql.Array#getResultSet(long, int)`](https://docs.oracle.com/javase/6/docs/api/java/sql/Array.html#getResultSet(long,%20int)).\n\n#### Parameters\n\n| Name | Type | Description |\n|---------|-----------|----------------------------------------------------------------------------------------------|\n| `index` | `Integer` | The array index of the first element to retrieve, where the first element has an index of 1. |\n| `count` | `Integer` | The number of successive SQL array elements to retrieve. |\n\n#### Return\n\n\n[JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) --- A [JdbcResultSet](/apps-script/reference/jdbc/jdbc-result-set) containing up to the specified number of consecutive SQL array\nelements."]]