@sap/async-xsjs 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/LICENSE +37 -0
- package/README.md +445 -0
- package/differences.md +162 -0
- package/docs/$.Application.html +262 -0
- package/docs/$.Session.html +674 -0
- package/docs/$.db.CallableStatement.html +2524 -0
- package/docs/$.db.Connection.html +511 -0
- package/docs/$.db.ParameterMetaData.html +805 -0
- package/docs/$.db.PreparedStatement.html +1796 -0
- package/docs/$.db.ResultSet.html +1308 -0
- package/docs/$.db.ResultSetMetaData.html +800 -0
- package/docs/$.db.SQLException.html +259 -0
- package/docs/$.db.html +773 -0
- package/docs/$.hdb.ColumnMetadata.html +438 -0
- package/docs/$.hdb.Connection.html +663 -0
- package/docs/$.hdb.ProcedureResult.html +280 -0
- package/docs/$.hdb.ResultSet.html +324 -0
- package/docs/$.hdb.ResultSetIterator.html +315 -0
- package/docs/$.hdb.ResultSetMetaData.html +259 -0
- package/docs/$.hdb.SQLException.html +259 -0
- package/docs/$.hdb.html +557 -0
- package/docs/$.html +471 -0
- package/docs/$.jobs.Job.html +783 -0
- package/docs/$.jobs.JobLog.html +380 -0
- package/docs/$.jobs.JobSchedules.html +852 -0
- package/docs/$.jobs.html +238 -0
- package/docs/$.net.Destination.html +304 -0
- package/docs/$.net.Mail.Part.html +510 -0
- package/docs/$.net.Mail.html +504 -0
- package/docs/$.net.SMTPConnection.html +347 -0
- package/docs/$.net.html +749 -0
- package/docs/$.net.http.Client.html +562 -0
- package/docs/$.net.http.Destination.html +237 -0
- package/docs/$.net.http.Request.html +567 -0
- package/docs/$.net.http.html +292 -0
- package/docs/$.security.AntiVirus.html +361 -0
- package/docs/$.security.Store.html +636 -0
- package/docs/$.security.crypto.html +414 -0
- package/docs/$.security.html +247 -0
- package/docs/$.security.x509.html +373 -0
- package/docs/$.text.analysis.Session.html +983 -0
- package/docs/$.text.analysis.html +242 -0
- package/docs/$.text.html +246 -0
- package/docs/$.text.mining.Session.html +2018 -0
- package/docs/$.text.mining.html +242 -0
- package/docs/$.trace.html +525 -0
- package/docs/$.util.SAXParser.html +955 -0
- package/docs/$.util.Zip.html +474 -0
- package/docs/$.util.codec.html +414 -0
- package/docs/$.util.compression.html +357 -0
- package/docs/$.util.html +325 -0
- package/docs/$.util.sql.html +290 -0
- package/docs/$.web.Body.html +333 -0
- package/docs/$.web.EntityList.html +296 -0
- package/docs/$.web.TupelList.html +496 -0
- package/docs/$.web.WebEntityRequest.html +393 -0
- package/docs/$.web.WebEntityResponse.html +392 -0
- package/docs/$.web.WebRequest.html +560 -0
- package/docs/$.web.WebResponse.html +609 -0
- package/docs/$.web.html +246 -0
- package/docs/Copyright-SAP.html +39 -0
- package/docs/Disclaimer-SAP.html +55 -0
- package/docs/index.html +232 -0
- package/docs/styles/jsdoc-default.css +382 -0
- package/lib/AppConfig.js +36 -0
- package/lib/AuditLogger.js +41 -0
- package/lib/cacert.js +26 -0
- package/lib/ctypes.js +153 -0
- package/lib/destinations/dest-provider.js +57 -0
- package/lib/index.js +235 -0
- package/lib/jobs/Action.js +40 -0
- package/lib/jobs/Job.js +100 -0
- package/lib/jobs/JobManager.js +150 -0
- package/lib/jobs/JobsRuntime.js +133 -0
- package/lib/jobs/SqlScriptJobRunner.js +36 -0
- package/lib/jobs/XsjsJobRunner.js +78 -0
- package/lib/jobs/index.js +11 -0
- package/lib/logging.js +16 -0
- package/lib/middleware.js +125 -0
- package/lib/odata/ODataService.js +125 -0
- package/lib/odata/index.js +7 -0
- package/lib/odata/service-factory.js +26 -0
- package/lib/passport-noauth.js +17 -0
- package/lib/routes.js +115 -0
- package/lib/runtime.js +740 -0
- package/lib/sandbox.js +40 -0
- package/lib/utils/XsJsFunctionRunner.js +57 -0
- package/lib/utils/XsJsLibFunctionRunner.js +57 -0
- package/lib/utils/buffer-utils.js +77 -0
- package/lib/utils/compression-utils.js +14 -0
- package/lib/utils/date-utils.js +104 -0
- package/lib/utils/errors/HttpError.js +20 -0
- package/lib/utils/errors/wrap-app-error.js +18 -0
- package/lib/utils/index.js +17 -0
- package/lib/utils/xs-function-runner.js +51 -0
- package/lib/utils/xs-types.js +21 -0
- package/lib/utils/xspath.js +36 -0
- package/lib/utils/xsstack.js +28 -0
- package/lib/views/error.html +28 -0
- package/lib/xsjs/Application.js +28 -0
- package/lib/xsjs/Locale.js +53 -0
- package/lib/xsjs/Session.js +31 -0
- package/lib/xsjs/constants.js +71 -0
- package/lib/xsjs/db/common/DbBase.js +85 -0
- package/lib/xsjs/db/common/DbOptions.js +163 -0
- package/lib/xsjs/db/common/arguments-validation.js +102 -0
- package/lib/xsjs/db/common/connection.js +12 -0
- package/lib/xsjs/db/common/enums.js +93 -0
- package/lib/xsjs/db/common/execute-batch.js +38 -0
- package/lib/xsjs/db/common/parse-time.js +139 -0
- package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
- package/lib/xsjs/db/dbapi/Connection.js +78 -0
- package/lib/xsjs/db/dbapi/DB.js +39 -0
- package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
- package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
- package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
- package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
- package/lib/xsjs/db/dbapi/Statement.js +514 -0
- package/lib/xsjs/db/dbapi/conversions.js +113 -0
- package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
- package/lib/xsjs/db/hdbapi/Connection.js +525 -0
- package/lib/xsjs/db/hdbapi/HDB.js +32 -0
- package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
- package/lib/xsjs/db/hdbapi/convert.js +77 -0
- package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
- package/lib/xsjs/db/index.js +4 -0
- package/lib/xsjs/index.js +13 -0
- package/lib/xsjs/jobs/Job.js +228 -0
- package/lib/xsjs/jobs/Jobs.js +11 -0
- package/lib/xsjs/jobs/Logs.js +127 -0
- package/lib/xsjs/jobs/Schedule.js +110 -0
- package/lib/xsjs/jobs/Schedules.js +108 -0
- package/lib/xsjs/net/Destination.js +43 -0
- package/lib/xsjs/net/http/Client.js +220 -0
- package/lib/xsjs/net/http/HTTP.js +72 -0
- package/lib/xsjs/net/index.js +5 -0
- package/lib/xsjs/net/smtp/Mail.js +38 -0
- package/lib/xsjs/net/smtp/Part.js +30 -0
- package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
- package/lib/xsjs/net/smtp/index.js +18 -0
- package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
- package/lib/xsjs/require.js +39 -0
- package/lib/xsjs/security/AntiVirus.js +31 -0
- package/lib/xsjs/security/Store.js +119 -0
- package/lib/xsjs/security/crypto.js +23 -0
- package/lib/xsjs/security/index.js +5 -0
- package/lib/xsjs/security/x509.js +12 -0
- package/lib/xsjs/text/analysis/Session.js +128 -0
- package/lib/xsjs/text/index.js +30 -0
- package/lib/xsjs/text/mining/Session.js +82 -0
- package/lib/xsjs/trace/trace.js +41 -0
- package/lib/xsjs/util/SAXParser.js +174 -0
- package/lib/xsjs/util/Zip.js +220 -0
- package/lib/xsjs/util/codec.js +33 -0
- package/lib/xsjs/util/compression.js +24 -0
- package/lib/xsjs/util/index.js +22 -0
- package/lib/xsjs/web/BasicWebEntity.js +41 -0
- package/lib/xsjs/web/EntityList.js +11 -0
- package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
- package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
- package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
- package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
- package/lib/xsjs/web/WebBody.js +135 -0
- package/lib/xsjs/web/WebEntityRequest.js +40 -0
- package/lib/xsjs/web/WebEntityResponse.js +26 -0
- package/lib/xsjs/web/WebRequest.js +209 -0
- package/lib/xsjs/web/WebResponse.js +183 -0
- package/lib/xsjs/web/index.js +4 -0
- package/lib/xsjs/web/utils/HeadersParser.js +53 -0
- package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
- package/lib/xsjs/web/utils/MultipartParser.js +163 -0
- package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
- package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
- package/lib/xsjslib/TextBundleWrapper.js +46 -0
- package/lib/xsjslib/index.js +11 -0
- package/npm-shrinkwrap.json +11540 -0
- package/package.json +84 -0
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: ResultSetIterator</title>
|
|
7
|
+
<script src="scripts/prettify/prettify.js"></script>
|
|
8
|
+
<script src="scripts/prettify/lang-css.js"></script>
|
|
9
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
13
|
+
<script src="scripts/highlight.js"></script>
|
|
14
|
+
<link rel="canonical" href="$.hdb.ResultSetIterator.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: ResultSetIterator</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.hdb.html">.hdb</a>.</span>
|
|
23
|
+
ResultSetIterator
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">Represents an iterator over a $.hdb.ResultSet object.</div>
|
|
26
|
+
</header>
|
|
27
|
+
<article>
|
|
28
|
+
<div class="container-overview">
|
|
29
|
+
<dt>
|
|
30
|
+
<h4 class="name" id="ResultSetIterator"><span class="type-signature"></span>new
|
|
31
|
+
ResultSetIterator<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
32
|
+
</dt>
|
|
33
|
+
<dd>
|
|
34
|
+
<dl class="details">
|
|
35
|
+
</dl>
|
|
36
|
+
<h5>Example</h5>
|
|
37
|
+
<pre class="prettyprint"><code>var connection = <b>await </b>$.hdb.getConnection();
|
|
38
|
+
var result = <b>await </b>connection.executeQuery('SELECT FLAVOR, PRICE, QUANTITY FROM "DB_EXAMPLE"."ICECREAM"');
|
|
39
|
+
var iterator = result.getIterator();
|
|
40
|
+
var totalPrice = 0;
|
|
41
|
+
while(iterator.next()) {
|
|
42
|
+
var currentRow = iterator.value();
|
|
43
|
+
totalPrice += currentRow['PRICE'];
|
|
44
|
+
}</code></pre>
|
|
45
|
+
</dd>
|
|
46
|
+
</div>
|
|
47
|
+
<h3 class="subsection-title">Methods</h3>
|
|
48
|
+
<dl>
|
|
49
|
+
<dt>
|
|
50
|
+
<h4 class="name" id="next"><span class="type-signature"></span>next<span class="signature">()</span><span
|
|
51
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
52
|
+
</dt>
|
|
53
|
+
<dd>
|
|
54
|
+
<div class="description">
|
|
55
|
+
Checks if the underlying $.hdb.ResultSet has more rows and sets the value of the iterator to the
|
|
56
|
+
next row if it exists.
|
|
57
|
+
</div>
|
|
58
|
+
<dl class="details">
|
|
59
|
+
</dl>
|
|
60
|
+
<h5>Returns:</h5>
|
|
61
|
+
<div class="param-desc">
|
|
62
|
+
True if the result set has more rows otherwise returns false.
|
|
63
|
+
</div>
|
|
64
|
+
<dl>
|
|
65
|
+
<dt>
|
|
66
|
+
Type
|
|
67
|
+
</dt>
|
|
68
|
+
<dd>
|
|
69
|
+
<span class="param-type">boolean</span>
|
|
70
|
+
</dd>
|
|
71
|
+
</dl>
|
|
72
|
+
</dd>
|
|
73
|
+
<dt>
|
|
74
|
+
<h4 class="name" id="value"><span class="type-signature"></span>value<span
|
|
75
|
+
class="signature">()</span><span class="type-signature"> → {object}</span></h4>
|
|
76
|
+
</dt>
|
|
77
|
+
<dd>
|
|
78
|
+
<div class="description">
|
|
79
|
+
Returns the current row that the iterator's value is set to. Should always be called after a
|
|
80
|
+
call to next();
|
|
81
|
+
</div>
|
|
82
|
+
<dl class="details">
|
|
83
|
+
</dl>
|
|
84
|
+
<h5>Throws:</h5>
|
|
85
|
+
<dl>
|
|
86
|
+
<dt>
|
|
87
|
+
<div class="param-desc">
|
|
88
|
+
Throws an error if next() was not previously called or if there are no rows in the
|
|
89
|
+
result set.
|
|
90
|
+
</div>
|
|
91
|
+
</dt>
|
|
92
|
+
<dt>
|
|
93
|
+
<dl>
|
|
94
|
+
<dt>
|
|
95
|
+
Type
|
|
96
|
+
</dt>
|
|
97
|
+
<dd>
|
|
98
|
+
<span class="param-type"><a
|
|
99
|
+
href="$.hdb.SQLException.html">$.hdb.SQLException</a></span>
|
|
100
|
+
</dd>
|
|
101
|
+
</dl>
|
|
102
|
+
</dt>
|
|
103
|
+
</dl>
|
|
104
|
+
<h5>Returns:</h5>
|
|
105
|
+
<div class="param-desc">
|
|
106
|
+
An object representing the row of a $.hdb.ResultSet.
|
|
107
|
+
</div>
|
|
108
|
+
<dl>
|
|
109
|
+
<dt>
|
|
110
|
+
Type
|
|
111
|
+
</dt>
|
|
112
|
+
<dd>
|
|
113
|
+
<span class="param-type">object</span>
|
|
114
|
+
</dd>
|
|
115
|
+
</dl>
|
|
116
|
+
</dd>
|
|
117
|
+
</dl>
|
|
118
|
+
</article>
|
|
119
|
+
</section>
|
|
120
|
+
</div>
|
|
121
|
+
<nav>
|
|
122
|
+
<h2><a href="index.html">Index</a></h2>
|
|
123
|
+
<h3>Classes</h3>
|
|
124
|
+
<table>
|
|
125
|
+
<tr>
|
|
126
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
127
|
+
<td class="oblique">$.security</td>
|
|
128
|
+
</tr>
|
|
129
|
+
<tr>
|
|
130
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
131
|
+
<td class="oblique">$</td>
|
|
132
|
+
</tr>
|
|
133
|
+
<tr>
|
|
134
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
135
|
+
<td class="oblique">$.web</td>
|
|
136
|
+
</tr>
|
|
137
|
+
<tr>
|
|
138
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
139
|
+
<td class="oblique">$.db</td>
|
|
140
|
+
</tr>
|
|
141
|
+
<tr>
|
|
142
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
143
|
+
<td class="oblique">$.net.http</td>
|
|
144
|
+
</tr>
|
|
145
|
+
<tr>
|
|
146
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
147
|
+
<td class="oblique">$.hdb</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
151
|
+
<td class="oblique">$.db</td>
|
|
152
|
+
</tr>
|
|
153
|
+
<tr>
|
|
154
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
155
|
+
<td class="oblique">$.hdb</td>
|
|
156
|
+
</tr>
|
|
157
|
+
<tr>
|
|
158
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
159
|
+
<td class="oblique">$.net</td>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
163
|
+
<td class="oblique">$.net.http</td>
|
|
164
|
+
</tr>
|
|
165
|
+
<tr>
|
|
166
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
167
|
+
<td class="oblique">$.web</td>
|
|
168
|
+
</tr>
|
|
169
|
+
<tr>
|
|
170
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
171
|
+
<td class="oblique">$.jobs</td>
|
|
172
|
+
</tr>
|
|
173
|
+
<tr>
|
|
174
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
175
|
+
<td class="oblique">$.jobs</td>
|
|
176
|
+
</tr>
|
|
177
|
+
<tr>
|
|
178
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
179
|
+
<td class="oblique">$.jobs</td>
|
|
180
|
+
</tr>
|
|
181
|
+
<tr>
|
|
182
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
183
|
+
<td class="oblique">$.net</td>
|
|
184
|
+
</tr>
|
|
185
|
+
<tr>
|
|
186
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
187
|
+
<td class="oblique">$.db</td>
|
|
188
|
+
</tr>
|
|
189
|
+
<tr>
|
|
190
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
191
|
+
<td class="oblique">$.net.Mail</td>
|
|
192
|
+
</tr>
|
|
193
|
+
<tr>
|
|
194
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
195
|
+
<td class="oblique">$.db</td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
199
|
+
<td class="oblique">$.hdb</td>
|
|
200
|
+
</tr>
|
|
201
|
+
<tr>
|
|
202
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
203
|
+
<td class="oblique">$.net.http</td>
|
|
204
|
+
</tr>
|
|
205
|
+
<tr>
|
|
206
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
207
|
+
<td class="oblique">$.db</td>
|
|
208
|
+
</tr>
|
|
209
|
+
<tr>
|
|
210
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
211
|
+
<td class="oblique">$.hdb</td>
|
|
212
|
+
</tr>
|
|
213
|
+
<tr>
|
|
214
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
215
|
+
<td class="oblique">$.hdb</td>
|
|
216
|
+
</tr>
|
|
217
|
+
<tr>
|
|
218
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
219
|
+
<td class="oblique">$.db</td>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
223
|
+
<td class="oblique">$.hdb</td>
|
|
224
|
+
</tr>
|
|
225
|
+
<tr>
|
|
226
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
227
|
+
<td class="oblique">$.util</td>
|
|
228
|
+
</tr>
|
|
229
|
+
<tr>
|
|
230
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
231
|
+
<td class="oblique">$</td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
235
|
+
<td class="oblique">$.text.analysis</td>
|
|
236
|
+
</tr>
|
|
237
|
+
<tr>
|
|
238
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
239
|
+
<td class="oblique">$.text.mining</td>
|
|
240
|
+
</tr>
|
|
241
|
+
<tr>
|
|
242
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
243
|
+
<td class="oblique">$.net</td>
|
|
244
|
+
</tr>
|
|
245
|
+
<tr>
|
|
246
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
247
|
+
<td class="oblique">$.db</td>
|
|
248
|
+
</tr>
|
|
249
|
+
<tr>
|
|
250
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
251
|
+
<td class="oblique">$.hdb</td>
|
|
252
|
+
</tr>
|
|
253
|
+
<tr>
|
|
254
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
255
|
+
<td class="oblique">$.security</td>
|
|
256
|
+
</tr>
|
|
257
|
+
<tr>
|
|
258
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
259
|
+
<td class="oblique">$.web</td>
|
|
260
|
+
</tr>
|
|
261
|
+
<tr>
|
|
262
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
263
|
+
<td class="oblique">$.web</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<tr>
|
|
266
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
267
|
+
<td class="oblique">$.web</td>
|
|
268
|
+
</tr>
|
|
269
|
+
<tr>
|
|
270
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
271
|
+
<td class="oblique">$.web</td>
|
|
272
|
+
</tr>
|
|
273
|
+
<tr>
|
|
274
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
275
|
+
<td class="oblique">$.web</td>
|
|
276
|
+
</tr>
|
|
277
|
+
<tr>
|
|
278
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
279
|
+
<td class="oblique">$.util</td>
|
|
280
|
+
</tr>
|
|
281
|
+
</table>
|
|
282
|
+
<h3>Namespaces</h3>
|
|
283
|
+
<ul>
|
|
284
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
285
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
286
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
287
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
288
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
289
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
290
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
291
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
292
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
293
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
294
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
295
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
296
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
297
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
298
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
299
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
300
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
301
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
302
|
+
</ul>
|
|
303
|
+
</nav>
|
|
304
|
+
<br clear="both">
|
|
305
|
+
<footer>
|
|
306
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
307
|
+
&
|
|
308
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
309
|
+
</footer>
|
|
310
|
+
<script>prettyPrint();</script>
|
|
311
|
+
<script src="scripts/linenumber.js"></script>
|
|
312
|
+
|
|
313
|
+
</body>
|
|
314
|
+
|
|
315
|
+
</html>
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: ResultSetMetaData</title>
|
|
7
|
+
<script src="scripts/prettify/prettify.js"></script>
|
|
8
|
+
<script src="scripts/prettify/lang-css.js"></script>
|
|
9
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
13
|
+
<script src="scripts/highlight.js"></script>
|
|
14
|
+
<link rel="canonical" href="$.hdb.ResultSetMetaData.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: ResultSetMetaData</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.hdb.html">.hdb</a>.</span>
|
|
23
|
+
ResultSetMetaData
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">$.hdb.ResultSetMetaData represents the metadata of a result set.</div>
|
|
26
|
+
</header>
|
|
27
|
+
<article>
|
|
28
|
+
<div class="container-overview">
|
|
29
|
+
<dt>
|
|
30
|
+
<h4 class="name" id="ResultSetMetaData"><span class="type-signature"></span>new
|
|
31
|
+
ResultSetMetaData<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
32
|
+
</dt>
|
|
33
|
+
<dd>
|
|
34
|
+
<dl class="details">
|
|
35
|
+
</dl>
|
|
36
|
+
<h5>Example</h5>
|
|
37
|
+
<pre class="prettyprint"><code>var connection = <b>await </b>$.hdb.getConnection();
|
|
38
|
+
var result = <b>await </b>connection.executeQuery('SELECT * FROM DUMMY');
|
|
39
|
+
var metadata = result.metadata;</code></pre>
|
|
40
|
+
</dd>
|
|
41
|
+
</div>
|
|
42
|
+
<h3 class="subsection-title">Members</h3>
|
|
43
|
+
<dl>
|
|
44
|
+
<dt>
|
|
45
|
+
<h4 class="name" id="columns"><span class="type-signature"></span>columns<span
|
|
46
|
+
class="type-signature"> :array</span></h4>
|
|
47
|
+
</dt>
|
|
48
|
+
<dd>
|
|
49
|
+
<div class="description">
|
|
50
|
+
Returns an array of <a href="$.hdb.ColumnMetadata.html">$.hdb.ColumnMetadata</a> objects, each
|
|
51
|
+
of which represents the metadata for a particular column.
|
|
52
|
+
</div>
|
|
53
|
+
<h5>Type:</h5>
|
|
54
|
+
<ul>
|
|
55
|
+
<li>
|
|
56
|
+
<span class="param-type">array</span>
|
|
57
|
+
</li>
|
|
58
|
+
</ul>
|
|
59
|
+
<dl class="details">
|
|
60
|
+
</dl>
|
|
61
|
+
</dd>
|
|
62
|
+
</dl>
|
|
63
|
+
</article>
|
|
64
|
+
</section>
|
|
65
|
+
</div>
|
|
66
|
+
<nav>
|
|
67
|
+
<h2><a href="index.html">Index</a></h2>
|
|
68
|
+
<h3>Classes</h3>
|
|
69
|
+
<table>
|
|
70
|
+
<tr>
|
|
71
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
72
|
+
<td class="oblique">$.security</td>
|
|
73
|
+
</tr>
|
|
74
|
+
<tr>
|
|
75
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
76
|
+
<td class="oblique">$</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
80
|
+
<td class="oblique">$.web</td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
84
|
+
<td class="oblique">$.db</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
88
|
+
<td class="oblique">$.net.http</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
92
|
+
<td class="oblique">$.hdb</td>
|
|
93
|
+
</tr>
|
|
94
|
+
<tr>
|
|
95
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
96
|
+
<td class="oblique">$.db</td>
|
|
97
|
+
</tr>
|
|
98
|
+
<tr>
|
|
99
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
100
|
+
<td class="oblique">$.hdb</td>
|
|
101
|
+
</tr>
|
|
102
|
+
<tr>
|
|
103
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
104
|
+
<td class="oblique">$.net</td>
|
|
105
|
+
</tr>
|
|
106
|
+
<tr>
|
|
107
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
108
|
+
<td class="oblique">$.net.http</td>
|
|
109
|
+
</tr>
|
|
110
|
+
<tr>
|
|
111
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
112
|
+
<td class="oblique">$.web</td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
116
|
+
<td class="oblique">$.jobs</td>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr>
|
|
119
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
120
|
+
<td class="oblique">$.jobs</td>
|
|
121
|
+
</tr>
|
|
122
|
+
<tr>
|
|
123
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
124
|
+
<td class="oblique">$.jobs</td>
|
|
125
|
+
</tr>
|
|
126
|
+
<tr>
|
|
127
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
128
|
+
<td class="oblique">$.net</td>
|
|
129
|
+
</tr>
|
|
130
|
+
<tr>
|
|
131
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
132
|
+
<td class="oblique">$.db</td>
|
|
133
|
+
</tr>
|
|
134
|
+
<tr>
|
|
135
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
136
|
+
<td class="oblique">$.net.Mail</td>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
140
|
+
<td class="oblique">$.db</td>
|
|
141
|
+
</tr>
|
|
142
|
+
<tr>
|
|
143
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
144
|
+
<td class="oblique">$.hdb</td>
|
|
145
|
+
</tr>
|
|
146
|
+
<tr>
|
|
147
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
148
|
+
<td class="oblique">$.net.http</td>
|
|
149
|
+
</tr>
|
|
150
|
+
<tr>
|
|
151
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
152
|
+
<td class="oblique">$.db</td>
|
|
153
|
+
</tr>
|
|
154
|
+
<tr>
|
|
155
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
156
|
+
<td class="oblique">$.hdb</td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr>
|
|
159
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
160
|
+
<td class="oblique">$.hdb</td>
|
|
161
|
+
</tr>
|
|
162
|
+
<tr>
|
|
163
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
164
|
+
<td class="oblique">$.db</td>
|
|
165
|
+
</tr>
|
|
166
|
+
<tr>
|
|
167
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
168
|
+
<td class="oblique">$.hdb</td>
|
|
169
|
+
</tr>
|
|
170
|
+
<tr>
|
|
171
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
172
|
+
<td class="oblique">$.util</td>
|
|
173
|
+
</tr>
|
|
174
|
+
<tr>
|
|
175
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
176
|
+
<td class="oblique">$</td>
|
|
177
|
+
</tr>
|
|
178
|
+
<tr>
|
|
179
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
180
|
+
<td class="oblique">$.text.analysis</td>
|
|
181
|
+
</tr>
|
|
182
|
+
<tr>
|
|
183
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
184
|
+
<td class="oblique">$.text.mining</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<tr>
|
|
187
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
188
|
+
<td class="oblique">$.net</td>
|
|
189
|
+
</tr>
|
|
190
|
+
<tr>
|
|
191
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
192
|
+
<td class="oblique">$.db</td>
|
|
193
|
+
</tr>
|
|
194
|
+
<tr>
|
|
195
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
196
|
+
<td class="oblique">$.hdb</td>
|
|
197
|
+
</tr>
|
|
198
|
+
<tr>
|
|
199
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
200
|
+
<td class="oblique">$.security</td>
|
|
201
|
+
</tr>
|
|
202
|
+
<tr>
|
|
203
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
204
|
+
<td class="oblique">$.web</td>
|
|
205
|
+
</tr>
|
|
206
|
+
<tr>
|
|
207
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
208
|
+
<td class="oblique">$.web</td>
|
|
209
|
+
</tr>
|
|
210
|
+
<tr>
|
|
211
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
212
|
+
<td class="oblique">$.web</td>
|
|
213
|
+
</tr>
|
|
214
|
+
<tr>
|
|
215
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
216
|
+
<td class="oblique">$.web</td>
|
|
217
|
+
</tr>
|
|
218
|
+
<tr>
|
|
219
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
220
|
+
<td class="oblique">$.web</td>
|
|
221
|
+
</tr>
|
|
222
|
+
<tr>
|
|
223
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
224
|
+
<td class="oblique">$.util</td>
|
|
225
|
+
</tr>
|
|
226
|
+
</table>
|
|
227
|
+
<h3>Namespaces</h3>
|
|
228
|
+
<ul>
|
|
229
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
230
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
231
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
232
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
233
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
234
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
235
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
236
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
237
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
238
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
239
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
240
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
241
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
242
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
243
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
244
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
245
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
246
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
247
|
+
</ul>
|
|
248
|
+
</nav>
|
|
249
|
+
<br clear="both">
|
|
250
|
+
<footer>
|
|
251
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
252
|
+
&
|
|
253
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
254
|
+
</footer>
|
|
255
|
+
<script>prettyPrint();</script>
|
|
256
|
+
<script src="scripts/linenumber.js"></script>
|
|
257
|
+
</body>
|
|
258
|
+
|
|
259
|
+
</html>
|