@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,1308 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: ResultSet</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
|
+
<script src="scripts/launch-8b3c5ca29b9e.min.js"></script>
|
|
12
|
+
<script src="scripts/highlight.js"></script>
|
|
13
|
+
|
|
14
|
+
<link rel="canonical" href="$.db.ResultSet.html">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<div id="main">
|
|
18
|
+
<h1 class="page-title">Class: ResultSet</h1>
|
|
19
|
+
<section>
|
|
20
|
+
<header>
|
|
21
|
+
<h2>
|
|
22
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.db.html">.db</a>.</span>
|
|
23
|
+
ResultSet
|
|
24
|
+
</h2>
|
|
25
|
+
<div class="class-description">$.db.ResultSet represents a database result set, which is generated during
|
|
26
|
+
the execution of SQL statements.
|
|
27
|
+
</div>
|
|
28
|
+
</header>
|
|
29
|
+
<article>
|
|
30
|
+
<div class="container-overview">
|
|
31
|
+
<dt>
|
|
32
|
+
<h4 class="name" id="ResultSet"><span class="type-signature"></span>new ResultSet<span
|
|
33
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
34
|
+
</dt>
|
|
35
|
+
<dd>
|
|
36
|
+
<div class="description">
|
|
37
|
+
Represents a database result set, which is generated during execution of SQL statements
|
|
38
|
+
</div>
|
|
39
|
+
<dl class="details">
|
|
40
|
+
</dl>
|
|
41
|
+
</dd>
|
|
42
|
+
</div>
|
|
43
|
+
<h3 class="subsection-title">Methods</h3>
|
|
44
|
+
<dl>
|
|
45
|
+
<dt>
|
|
46
|
+
<h4 class="name" id="close"><span class="type-signature"></span>close<span
|
|
47
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
48
|
+
</dt>
|
|
49
|
+
<dd>
|
|
50
|
+
<div class="description">
|
|
51
|
+
Closes the ResultSet
|
|
52
|
+
</div>
|
|
53
|
+
<dl class="details">
|
|
54
|
+
</dl>
|
|
55
|
+
<h5>Throws:</h5>
|
|
56
|
+
<ul>
|
|
57
|
+
<li>
|
|
58
|
+
<div class="param-desc">
|
|
59
|
+
Throws an error if the object the method is being called on is not valid.
|
|
60
|
+
</div>
|
|
61
|
+
</li>
|
|
62
|
+
<li>
|
|
63
|
+
<div class="param-desc">
|
|
64
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
65
|
+
</div>
|
|
66
|
+
</li>
|
|
67
|
+
</ul>
|
|
68
|
+
</dd>
|
|
69
|
+
<dt>
|
|
70
|
+
<h4 class="name" id="getBigInt"><span class="type-signature"></span>getBigInt<span
|
|
71
|
+
class="signature">(columnIndex)</span><span
|
|
72
|
+
class="type-signature"> → {ctypes.Int64}</span></h4>
|
|
73
|
+
</dt>
|
|
74
|
+
<dd>
|
|
75
|
+
<div class="description">
|
|
76
|
+
Returns a ctypes.Int64 value of the specified column. getBigInt is used for BIGINT column types.
|
|
77
|
+
</div>
|
|
78
|
+
<h5>Parameters:</h5>
|
|
79
|
+
<table class="params">
|
|
80
|
+
<thead>
|
|
81
|
+
<tr>
|
|
82
|
+
<th>Name</th>
|
|
83
|
+
<th>Type</th>
|
|
84
|
+
<th class="last">Description</th>
|
|
85
|
+
</tr>
|
|
86
|
+
</thead>
|
|
87
|
+
<tbody>
|
|
88
|
+
<tr>
|
|
89
|
+
<td class="name"><code>columnIndex</code></td>
|
|
90
|
+
<td class="type">
|
|
91
|
+
<span class="param-type">integer</span>
|
|
92
|
+
</td>
|
|
93
|
+
<td class="description last">The target column, <b>starting from 1</b></td>
|
|
94
|
+
</tr>
|
|
95
|
+
</tbody>
|
|
96
|
+
</table>
|
|
97
|
+
<dl class="details">
|
|
98
|
+
</dl>
|
|
99
|
+
<h5>Throws:</h5>
|
|
100
|
+
<ul>
|
|
101
|
+
<li>
|
|
102
|
+
<div class="param-desc">
|
|
103
|
+
Throws an error if the index parameter is not valid.
|
|
104
|
+
</div>
|
|
105
|
+
</li>
|
|
106
|
+
<li>
|
|
107
|
+
<div class="param-desc">
|
|
108
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
109
|
+
</div>
|
|
110
|
+
</li>
|
|
111
|
+
</ul>
|
|
112
|
+
<h5>Returns:</h5>
|
|
113
|
+
<dl>
|
|
114
|
+
<dt>
|
|
115
|
+
Type
|
|
116
|
+
</dt>
|
|
117
|
+
<dd>
|
|
118
|
+
<span class="param-type">ctypes.Int64</span>
|
|
119
|
+
</dd>
|
|
120
|
+
</dl>
|
|
121
|
+
</dd>
|
|
122
|
+
<dt>
|
|
123
|
+
<h4 class="name" id="getBlob"><span class="type-signature"></span>getBlob<span class="signature">(columnIndex)</span><span
|
|
124
|
+
class="type-signature"> → {ArrayBuffer}</span></h4>
|
|
125
|
+
</dt>
|
|
126
|
+
<dd>
|
|
127
|
+
<div class="description">
|
|
128
|
+
Returns an ArrayBuffer value of the specified column. getBlob is used for BLOB column types.
|
|
129
|
+
</div>
|
|
130
|
+
<h5>Parameters:</h5>
|
|
131
|
+
<table class="params">
|
|
132
|
+
<thead>
|
|
133
|
+
<tr>
|
|
134
|
+
<th>Name</th>
|
|
135
|
+
<th>Type</th>
|
|
136
|
+
<th class="last">Description</th>
|
|
137
|
+
</tr>
|
|
138
|
+
</thead>
|
|
139
|
+
<tbody>
|
|
140
|
+
<tr>
|
|
141
|
+
<td class="name"><code>columnIndex</code></td>
|
|
142
|
+
<td class="type">
|
|
143
|
+
<span class="param-type">integer</span>
|
|
144
|
+
</td>
|
|
145
|
+
<td class="description last">The target column, <b>starting from 1</b></td>
|
|
146
|
+
</tr>
|
|
147
|
+
</tbody>
|
|
148
|
+
</table>
|
|
149
|
+
<dl class="details">
|
|
150
|
+
</dl>
|
|
151
|
+
<h5>Throws:</h5>
|
|
152
|
+
<ul>
|
|
153
|
+
<li>
|
|
154
|
+
<div class="param-desc">
|
|
155
|
+
Throws an error if the index parameter is not valid.
|
|
156
|
+
</div>
|
|
157
|
+
</li>
|
|
158
|
+
<li>
|
|
159
|
+
<div class="param-desc">
|
|
160
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
161
|
+
</div>
|
|
162
|
+
</li>
|
|
163
|
+
</ul>
|
|
164
|
+
<h5>Returns:</h5>
|
|
165
|
+
<div class="param-desc">
|
|
166
|
+
Blob representation
|
|
167
|
+
</div>
|
|
168
|
+
<dl>
|
|
169
|
+
<dt>
|
|
170
|
+
Type
|
|
171
|
+
</dt>
|
|
172
|
+
<dd>
|
|
173
|
+
<span class="param-type">ArrayBuffer</span>
|
|
174
|
+
</dd>
|
|
175
|
+
</dl>
|
|
176
|
+
</dd>
|
|
177
|
+
<dt>
|
|
178
|
+
<h4 class="name" id="getBString"><span class="type-signature"></span>getBString<span
|
|
179
|
+
class="signature">(columnIndex)</span><span
|
|
180
|
+
class="type-signature"> → {ArrayBuffer}</span></h4>
|
|
181
|
+
</dt>
|
|
182
|
+
<dd>
|
|
183
|
+
<div class="description">
|
|
184
|
+
Returns an ArrayBuffer object of the specified column. getBString is used for BINARY and
|
|
185
|
+
VARBINARY column types.
|
|
186
|
+
</div>
|
|
187
|
+
<h5>Parameters:</h5>
|
|
188
|
+
<table class="params">
|
|
189
|
+
<thead>
|
|
190
|
+
<tr>
|
|
191
|
+
<th>Name</th>
|
|
192
|
+
<th>Type</th>
|
|
193
|
+
<th class="last">Description</th>
|
|
194
|
+
</tr>
|
|
195
|
+
</thead>
|
|
196
|
+
<tbody>
|
|
197
|
+
<tr>
|
|
198
|
+
<td class="name"><code>columnIndex</code></td>
|
|
199
|
+
<td class="type">
|
|
200
|
+
<span class="param-type">integer</span>
|
|
201
|
+
</td>
|
|
202
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
203
|
+
</tr>
|
|
204
|
+
</tbody>
|
|
205
|
+
</table>
|
|
206
|
+
<dl class="details">
|
|
207
|
+
</dl>
|
|
208
|
+
<h5>Throws:</h5>
|
|
209
|
+
<ul>
|
|
210
|
+
<li>
|
|
211
|
+
<div class="param-desc">
|
|
212
|
+
Throws an error if the index parameter is not valid or the SQL type of the queried
|
|
213
|
+
parameter does not match.
|
|
214
|
+
</div>
|
|
215
|
+
</li>
|
|
216
|
+
<li>
|
|
217
|
+
<div class="param-desc">
|
|
218
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
219
|
+
</div>
|
|
220
|
+
</li>
|
|
221
|
+
</ul>
|
|
222
|
+
<h5>Returns:</h5>
|
|
223
|
+
<div class="param-desc">
|
|
224
|
+
value ArrayBuffer object
|
|
225
|
+
</div>
|
|
226
|
+
<dl>
|
|
227
|
+
<dt>
|
|
228
|
+
Type
|
|
229
|
+
</dt>
|
|
230
|
+
<dd>
|
|
231
|
+
<span class="param-type">ArrayBuffer</span>
|
|
232
|
+
</dd>
|
|
233
|
+
</dl>
|
|
234
|
+
</dd>
|
|
235
|
+
<dt>
|
|
236
|
+
<h4 class="name" id="getClob"><span class="type-signature"></span>getClob<span class="signature">(columnIndex)</span><span
|
|
237
|
+
class="type-signature"> → {string}</span></h4>
|
|
238
|
+
</dt>
|
|
239
|
+
<dd>
|
|
240
|
+
<div class="description">
|
|
241
|
+
Returns a string value of the specified column. getClob is used for CLOB column types.
|
|
242
|
+
</div>
|
|
243
|
+
<h5>Parameters:</h5>
|
|
244
|
+
<table class="params">
|
|
245
|
+
<thead>
|
|
246
|
+
<tr>
|
|
247
|
+
<th>Name</th>
|
|
248
|
+
<th>Type</th>
|
|
249
|
+
<th class="last">Description</th>
|
|
250
|
+
</tr>
|
|
251
|
+
</thead>
|
|
252
|
+
<tbody>
|
|
253
|
+
<tr>
|
|
254
|
+
<td class="name"><code>columnIndex</code></td>
|
|
255
|
+
<td class="type">
|
|
256
|
+
<span class="param-type">integer</span>
|
|
257
|
+
</td>
|
|
258
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
259
|
+
</tr>
|
|
260
|
+
</tbody>
|
|
261
|
+
</table>
|
|
262
|
+
<dl class="details">
|
|
263
|
+
</dl>
|
|
264
|
+
<h5>Throws:</h5>
|
|
265
|
+
<ul>
|
|
266
|
+
<li>
|
|
267
|
+
<div class="param-desc">
|
|
268
|
+
Throws an error if the index parameter is not valid.
|
|
269
|
+
</div>
|
|
270
|
+
</li>
|
|
271
|
+
<li>
|
|
272
|
+
<div class="param-desc">
|
|
273
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
274
|
+
</div>
|
|
275
|
+
</li>
|
|
276
|
+
</ul>
|
|
277
|
+
<h5>Returns:</h5>
|
|
278
|
+
<div class="param-desc">
|
|
279
|
+
String representation
|
|
280
|
+
</div>
|
|
281
|
+
<dl>
|
|
282
|
+
<dt>
|
|
283
|
+
Type
|
|
284
|
+
</dt>
|
|
285
|
+
<dd>
|
|
286
|
+
<span class="param-type">string</span>
|
|
287
|
+
</dd>
|
|
288
|
+
</dl>
|
|
289
|
+
</dd>
|
|
290
|
+
<dt>
|
|
291
|
+
<h4 class="name" id="getDate"><span class="type-signature"></span>getDate<span class="signature">(columnIndex)</span><span
|
|
292
|
+
class="type-signature"> → {Date}</span></h4>
|
|
293
|
+
</dt>
|
|
294
|
+
<dd>
|
|
295
|
+
<div class="description">
|
|
296
|
+
Used to retrieve the value of a DATE column in a ResultSet.
|
|
297
|
+
</div>
|
|
298
|
+
<h5>Parameters:</h5>
|
|
299
|
+
<table class="params">
|
|
300
|
+
<thead>
|
|
301
|
+
<tr>
|
|
302
|
+
<th>Name</th>
|
|
303
|
+
<th>Type</th>
|
|
304
|
+
<th class="last">Description</th>
|
|
305
|
+
</tr>
|
|
306
|
+
</thead>
|
|
307
|
+
<tbody>
|
|
308
|
+
<tr>
|
|
309
|
+
<td class="name"><code>columnIndex</code></td>
|
|
310
|
+
<td class="type">
|
|
311
|
+
<span class="param-type">integer</span>
|
|
312
|
+
</td>
|
|
313
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
314
|
+
1</b></td>
|
|
315
|
+
</tr>
|
|
316
|
+
</tbody>
|
|
317
|
+
</table>
|
|
318
|
+
<dl class="details">
|
|
319
|
+
</dl>
|
|
320
|
+
<h5>Throws:</h5>
|
|
321
|
+
<ul>
|
|
322
|
+
<li>
|
|
323
|
+
<div class="param-desc">
|
|
324
|
+
Throws an error if the index parameter is not valid.
|
|
325
|
+
</div>
|
|
326
|
+
</li>
|
|
327
|
+
<li>
|
|
328
|
+
<div class="param-desc">
|
|
329
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
330
|
+
</div>
|
|
331
|
+
</li>
|
|
332
|
+
</ul>
|
|
333
|
+
<h5>Returns:</h5>
|
|
334
|
+
<div class="param-desc">
|
|
335
|
+
A JavaScript Date object representing the value
|
|
336
|
+
</div>
|
|
337
|
+
<dl>
|
|
338
|
+
<dt>
|
|
339
|
+
Type
|
|
340
|
+
</dt>
|
|
341
|
+
<dd>
|
|
342
|
+
<span class="param-type">Date</span>
|
|
343
|
+
</dd>
|
|
344
|
+
</dl>
|
|
345
|
+
</dd>
|
|
346
|
+
<dt>
|
|
347
|
+
<h4 class="name" id="getDecimal"><span class="type-signature"></span>getDecimal<span
|
|
348
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {number}</span>
|
|
349
|
+
</h4>
|
|
350
|
+
</dt>
|
|
351
|
+
<dd>
|
|
352
|
+
<div class="description">
|
|
353
|
+
Returns a number value of the specified column. getDecimal is used for DECIMAL column types.
|
|
354
|
+
</div>
|
|
355
|
+
<h5>Parameters:</h5>
|
|
356
|
+
<table class="params">
|
|
357
|
+
<thead>
|
|
358
|
+
<tr>
|
|
359
|
+
<th>Name</th>
|
|
360
|
+
<th>Type</th>
|
|
361
|
+
<th class="last">Description</th>
|
|
362
|
+
</tr>
|
|
363
|
+
</thead>
|
|
364
|
+
<tbody>
|
|
365
|
+
<tr>
|
|
366
|
+
<td class="name"><code>columnIndex</code></td>
|
|
367
|
+
<td class="type">
|
|
368
|
+
<span class="param-type">integer</span>
|
|
369
|
+
</td>
|
|
370
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
371
|
+
</tr>
|
|
372
|
+
</tbody>
|
|
373
|
+
</table>
|
|
374
|
+
<dl class="details">
|
|
375
|
+
</dl>
|
|
376
|
+
<h5>Throws:</h5>
|
|
377
|
+
<ul>
|
|
378
|
+
<li>
|
|
379
|
+
<div class="param-desc">
|
|
380
|
+
Throws an error if the index parameter is not valid.
|
|
381
|
+
</div>
|
|
382
|
+
</li>
|
|
383
|
+
<li>
|
|
384
|
+
<div class="param-desc">
|
|
385
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
386
|
+
</div>
|
|
387
|
+
</li>
|
|
388
|
+
</ul>
|
|
389
|
+
<h5>Returns:</h5>
|
|
390
|
+
<div class="param-desc">
|
|
391
|
+
Number representation
|
|
392
|
+
</div>
|
|
393
|
+
<dl>
|
|
394
|
+
<dt>
|
|
395
|
+
Type
|
|
396
|
+
</dt>
|
|
397
|
+
<dd>
|
|
398
|
+
<span class="param-type">number</span>
|
|
399
|
+
</dd>
|
|
400
|
+
</dl>
|
|
401
|
+
</dd>
|
|
402
|
+
<dt>
|
|
403
|
+
<h4 class="name" id="getDouble"><span class="type-signature"></span>getDouble<span
|
|
404
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {number}</span>
|
|
405
|
+
</h4>
|
|
406
|
+
</dt>
|
|
407
|
+
<dd>
|
|
408
|
+
<div class="description">
|
|
409
|
+
Returns a number value of the specified column. getDouble is used for DOUBLE column types.
|
|
410
|
+
</div>
|
|
411
|
+
<h5>Parameters:</h5>
|
|
412
|
+
<table class="params">
|
|
413
|
+
<thead>
|
|
414
|
+
<tr>
|
|
415
|
+
<th>Name</th>
|
|
416
|
+
<th>Type</th>
|
|
417
|
+
<th class="last">Description</th>
|
|
418
|
+
</tr>
|
|
419
|
+
</thead>
|
|
420
|
+
<tbody>
|
|
421
|
+
<tr>
|
|
422
|
+
<td class="name"><code>columnIndex</code></td>
|
|
423
|
+
<td class="type">
|
|
424
|
+
<span class="param-type">integer</span>
|
|
425
|
+
</td>
|
|
426
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
427
|
+
</tr>
|
|
428
|
+
</tbody>
|
|
429
|
+
</table>
|
|
430
|
+
<dl class="details">
|
|
431
|
+
</dl>
|
|
432
|
+
<h5>Throws:</h5>
|
|
433
|
+
<ul>
|
|
434
|
+
<li>
|
|
435
|
+
<div class="param-desc">
|
|
436
|
+
Throws an error if the index parameter is not valid.
|
|
437
|
+
</div>
|
|
438
|
+
</li>
|
|
439
|
+
<li>
|
|
440
|
+
<div class="param-desc">
|
|
441
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
442
|
+
</div>
|
|
443
|
+
</li>
|
|
444
|
+
</ul>
|
|
445
|
+
<h5>Returns:</h5>
|
|
446
|
+
<div class="param-desc">
|
|
447
|
+
Number representation
|
|
448
|
+
</div>
|
|
449
|
+
<dl>
|
|
450
|
+
<dt>
|
|
451
|
+
Type
|
|
452
|
+
</dt>
|
|
453
|
+
<dd>
|
|
454
|
+
<span class="param-type">number</span>
|
|
455
|
+
</dd>
|
|
456
|
+
</dl>
|
|
457
|
+
</dd>
|
|
458
|
+
<dt>
|
|
459
|
+
<h4 class="name" id="getFloat"><span class="type-signature"></span>getFloat<span class="signature">(columnIndex)</span><span
|
|
460
|
+
class="type-signature"> → {number}</span></h4>
|
|
461
|
+
</dt>
|
|
462
|
+
<dd>
|
|
463
|
+
<div class="description">
|
|
464
|
+
Returns a number value of the specified column. getFloat is used for FLOAT column types.
|
|
465
|
+
</div>
|
|
466
|
+
<h5>Parameters:</h5>
|
|
467
|
+
<table class="params">
|
|
468
|
+
<thead>
|
|
469
|
+
<tr>
|
|
470
|
+
<th>Name</th>
|
|
471
|
+
<th>Type</th>
|
|
472
|
+
<th class="last">Description</th>
|
|
473
|
+
</tr>
|
|
474
|
+
</thead>
|
|
475
|
+
<tbody>
|
|
476
|
+
<tr>
|
|
477
|
+
<td class="name"><code>columnIndex</code></td>
|
|
478
|
+
<td class="type">
|
|
479
|
+
<span class="param-type">integer</span>
|
|
480
|
+
</td>
|
|
481
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
482
|
+
</tr>
|
|
483
|
+
</tbody>
|
|
484
|
+
</table>
|
|
485
|
+
<dl class="details">
|
|
486
|
+
</dl>
|
|
487
|
+
<h5>Throws:</h5>
|
|
488
|
+
<ul>
|
|
489
|
+
<li>
|
|
490
|
+
<div class="param-desc">
|
|
491
|
+
Throws an error if the index parameter is not valid.
|
|
492
|
+
</div>
|
|
493
|
+
</li>
|
|
494
|
+
<li>
|
|
495
|
+
<div class="param-desc">
|
|
496
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
497
|
+
</div>
|
|
498
|
+
</li>
|
|
499
|
+
</ul>
|
|
500
|
+
<h5>Returns:</h5>
|
|
501
|
+
<div class="param-desc">
|
|
502
|
+
Number representation
|
|
503
|
+
</div>
|
|
504
|
+
<dl>
|
|
505
|
+
<dt>
|
|
506
|
+
Type
|
|
507
|
+
</dt>
|
|
508
|
+
<dd>
|
|
509
|
+
<span class="param-type">number</span>
|
|
510
|
+
</dd>
|
|
511
|
+
</dl>
|
|
512
|
+
</dd>
|
|
513
|
+
<dt>
|
|
514
|
+
<h4 class="name" id="getInteger"><span class="type-signature"></span>getInteger<span
|
|
515
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {integer}</span>
|
|
516
|
+
</h4>
|
|
517
|
+
</dt>
|
|
518
|
+
<dd>
|
|
519
|
+
<div class="description">
|
|
520
|
+
Returns an integer value of the specified column, for TINYINT, SMALLINT, INT, and BIGINT column
|
|
521
|
+
types.
|
|
522
|
+
An exception is thrown if the value is bigger than 9007199254740992 (2^53) or smaller than
|
|
523
|
+
-9007199254740992 (-2^53).
|
|
524
|
+
</div>
|
|
525
|
+
<h5>Parameters:</h5>
|
|
526
|
+
<table class="params">
|
|
527
|
+
<thead>
|
|
528
|
+
<tr>
|
|
529
|
+
<th>Name</th>
|
|
530
|
+
<th>Type</th>
|
|
531
|
+
<th class="last">Description</th>
|
|
532
|
+
</tr>
|
|
533
|
+
</thead>
|
|
534
|
+
<tbody>
|
|
535
|
+
<tr>
|
|
536
|
+
<td class="name"><code>columnIndex</code></td>
|
|
537
|
+
<td class="type">
|
|
538
|
+
<span class="param-type">integer</span>
|
|
539
|
+
</td>
|
|
540
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
541
|
+
</tr>
|
|
542
|
+
</tbody>
|
|
543
|
+
</table>
|
|
544
|
+
<dl class="details">
|
|
545
|
+
</dl>
|
|
546
|
+
<h5>Throws:</h5>
|
|
547
|
+
<ul>
|
|
548
|
+
<li>
|
|
549
|
+
<div class="param-desc">
|
|
550
|
+
Throws an error if the index parameter is not valid.
|
|
551
|
+
</div>
|
|
552
|
+
</li>
|
|
553
|
+
<li>
|
|
554
|
+
<div class="param-desc">
|
|
555
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
556
|
+
</div>
|
|
557
|
+
</li>
|
|
558
|
+
</ul>
|
|
559
|
+
<h5>Returns:</h5>
|
|
560
|
+
<div class="param-desc">
|
|
561
|
+
Integer
|
|
562
|
+
</div>
|
|
563
|
+
<dl>
|
|
564
|
+
<dt>
|
|
565
|
+
Type
|
|
566
|
+
</dt>
|
|
567
|
+
<dd>
|
|
568
|
+
<span class="param-type">integer</span>
|
|
569
|
+
</dd>
|
|
570
|
+
</dl>
|
|
571
|
+
</dd>
|
|
572
|
+
<dt>
|
|
573
|
+
<h4 class="name" id="getMetaData"><span class="type-signature"></span>getMetaData<span
|
|
574
|
+
class="signature">()</span><span class="type-signature"> → {<a
|
|
575
|
+
href="$.db.ResultSetMetaData.html">$.db.ResultSetMetaData</a>}</span></h4>
|
|
576
|
+
</dt>
|
|
577
|
+
<dd>
|
|
578
|
+
<div class="description">
|
|
579
|
+
Returns the metadata of the result set
|
|
580
|
+
</div>
|
|
581
|
+
<dl class="details">
|
|
582
|
+
</dl>
|
|
583
|
+
<h5>Returns:</h5>
|
|
584
|
+
<div class="param-desc">
|
|
585
|
+
The metadata of the result set
|
|
586
|
+
</div>
|
|
587
|
+
<dl>
|
|
588
|
+
<dt>
|
|
589
|
+
Type
|
|
590
|
+
</dt>
|
|
591
|
+
<dd>
|
|
592
|
+
<span class="param-type"><a
|
|
593
|
+
href="$.db.ResultSetMetaData.html">$.db.ResultSetMetaData</a></span>
|
|
594
|
+
</dd>
|
|
595
|
+
</dl>
|
|
596
|
+
</dd>
|
|
597
|
+
<dt>
|
|
598
|
+
<h4 class="name" id="getNClob"><span class="type-signature"></span>getNClob<span class="signature">(columnIndex)</span><span
|
|
599
|
+
class="type-signature"> → {string}</span></h4>
|
|
600
|
+
</dt>
|
|
601
|
+
<dd>
|
|
602
|
+
<div class="description">
|
|
603
|
+
Returns a string value of the specified column. getNClob is used for NCLOB and TEXT column
|
|
604
|
+
types.
|
|
605
|
+
</div>
|
|
606
|
+
<h5>Parameters:</h5>
|
|
607
|
+
<table class="params">
|
|
608
|
+
<thead>
|
|
609
|
+
<tr>
|
|
610
|
+
<th>Name</th>
|
|
611
|
+
<th>Type</th>
|
|
612
|
+
<th class="last">Description</th>
|
|
613
|
+
</tr>
|
|
614
|
+
</thead>
|
|
615
|
+
<tbody>
|
|
616
|
+
<tr>
|
|
617
|
+
<td class="name"><code>columnIndex</code></td>
|
|
618
|
+
<td class="type">
|
|
619
|
+
<span class="param-type">integer</span>
|
|
620
|
+
</td>
|
|
621
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
622
|
+
</tr>
|
|
623
|
+
</tbody>
|
|
624
|
+
</table>
|
|
625
|
+
<dl class="details">
|
|
626
|
+
</dl>
|
|
627
|
+
<h5>Throws:</h5>
|
|
628
|
+
<ul>
|
|
629
|
+
<li>
|
|
630
|
+
<div class="param-desc">
|
|
631
|
+
Throws an error if the index parameter is not valid.
|
|
632
|
+
</div>
|
|
633
|
+
</li>
|
|
634
|
+
<li>
|
|
635
|
+
<div class="param-desc">
|
|
636
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
637
|
+
</div>
|
|
638
|
+
</li>
|
|
639
|
+
</ul>
|
|
640
|
+
<h5>Returns:</h5>
|
|
641
|
+
<div class="param-desc">
|
|
642
|
+
String representation
|
|
643
|
+
</div>
|
|
644
|
+
<dl>
|
|
645
|
+
<dt>
|
|
646
|
+
Type
|
|
647
|
+
</dt>
|
|
648
|
+
<dd>
|
|
649
|
+
<span class="param-type">string</span>
|
|
650
|
+
</dd>
|
|
651
|
+
</dl>
|
|
652
|
+
</dd>
|
|
653
|
+
<dt>
|
|
654
|
+
<h4 class="name" id="getNString"><span class="type-signature"></span>getNString<span
|
|
655
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
656
|
+
</h4>
|
|
657
|
+
</dt>
|
|
658
|
+
<dd>
|
|
659
|
+
<div class="description">
|
|
660
|
+
Returns a string value of the specified column. getNString is used for NCHAR, NVARCHAR,
|
|
661
|
+
SHORTTEXT column types.
|
|
662
|
+
</div>
|
|
663
|
+
<h5>Parameters:</h5>
|
|
664
|
+
<table class="params">
|
|
665
|
+
<thead>
|
|
666
|
+
<tr>
|
|
667
|
+
<th>Name</th>
|
|
668
|
+
<th>Type</th>
|
|
669
|
+
<th class="last">Description</th>
|
|
670
|
+
</tr>
|
|
671
|
+
</thead>
|
|
672
|
+
<tbody>
|
|
673
|
+
<tr>
|
|
674
|
+
<td class="name"><code>columnIndex</code></td>
|
|
675
|
+
<td class="type">
|
|
676
|
+
<span class="param-type">integer</span>
|
|
677
|
+
</td>
|
|
678
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
679
|
+
</tr>
|
|
680
|
+
</tbody>
|
|
681
|
+
</table>
|
|
682
|
+
<dl class="details">
|
|
683
|
+
</dl>
|
|
684
|
+
<h5>Throws:</h5>
|
|
685
|
+
<ul>
|
|
686
|
+
<li>
|
|
687
|
+
<div class="param-desc">
|
|
688
|
+
Throws an error if the index parameter is not valid.
|
|
689
|
+
</div>
|
|
690
|
+
</li>
|
|
691
|
+
<li>
|
|
692
|
+
<div class="param-desc">
|
|
693
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
694
|
+
</div>
|
|
695
|
+
</li>
|
|
696
|
+
</ul>
|
|
697
|
+
<h5>Returns:</h5>
|
|
698
|
+
<div class="param-desc">
|
|
699
|
+
String representation
|
|
700
|
+
</div>
|
|
701
|
+
<dl>
|
|
702
|
+
<dt>
|
|
703
|
+
Type
|
|
704
|
+
</dt>
|
|
705
|
+
<dd>
|
|
706
|
+
<span class="param-type">string</span>
|
|
707
|
+
</dd>
|
|
708
|
+
</dl>
|
|
709
|
+
</dd>
|
|
710
|
+
<dt>
|
|
711
|
+
<h4 class="name" id="getReal"><span class="type-signature"></span>getReal<span class="signature">(columnIndex)</span><span
|
|
712
|
+
class="type-signature"> → {number}</span></h4>
|
|
713
|
+
</dt>
|
|
714
|
+
<dd>
|
|
715
|
+
<div class="description">
|
|
716
|
+
Returns a number value of the specified column. getReal is used for REAL column types.
|
|
717
|
+
</div>
|
|
718
|
+
<h5>Parameters:</h5>
|
|
719
|
+
<table class="params">
|
|
720
|
+
<thead>
|
|
721
|
+
<tr>
|
|
722
|
+
<th>Name</th>
|
|
723
|
+
<th>Type</th>
|
|
724
|
+
<th class="last">Description</th>
|
|
725
|
+
</tr>
|
|
726
|
+
</thead>
|
|
727
|
+
<tbody>
|
|
728
|
+
<tr>
|
|
729
|
+
<td class="name"><code>columnIndex</code></td>
|
|
730
|
+
<td class="type">
|
|
731
|
+
<span class="param-type">integer</span>
|
|
732
|
+
</td>
|
|
733
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
734
|
+
</tr>
|
|
735
|
+
</tbody>
|
|
736
|
+
</table>
|
|
737
|
+
<dl class="details">
|
|
738
|
+
</dl>
|
|
739
|
+
<h5>Throws:</h5>
|
|
740
|
+
<ul>
|
|
741
|
+
<li>
|
|
742
|
+
<div class="param-desc">
|
|
743
|
+
Throws an error if the index parameter is not valid.
|
|
744
|
+
</div>
|
|
745
|
+
</li>
|
|
746
|
+
<li>
|
|
747
|
+
<div class="param-desc">
|
|
748
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
749
|
+
</div>
|
|
750
|
+
</li>
|
|
751
|
+
</ul>
|
|
752
|
+
<h5>Returns:</h5>
|
|
753
|
+
<div class="param-desc">
|
|
754
|
+
Number representation
|
|
755
|
+
</div>
|
|
756
|
+
<dl>
|
|
757
|
+
<dt>
|
|
758
|
+
Type
|
|
759
|
+
</dt>
|
|
760
|
+
<dd>
|
|
761
|
+
<span class="param-type">number</span>
|
|
762
|
+
</dd>
|
|
763
|
+
</dl>
|
|
764
|
+
</dd>
|
|
765
|
+
<dt>
|
|
766
|
+
<h4 class="name" id="getSeconddate"><span class="type-signature"></span>getSeconddate<span
|
|
767
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {Date}</span>
|
|
768
|
+
</h4>
|
|
769
|
+
</dt>
|
|
770
|
+
<dd>
|
|
771
|
+
<div class="description">
|
|
772
|
+
Used to retrieve the value of a SECONDDATE column in a ResultSet.
|
|
773
|
+
</div>
|
|
774
|
+
<h5>Parameters:</h5>
|
|
775
|
+
<table class="params">
|
|
776
|
+
<thead>
|
|
777
|
+
<tr>
|
|
778
|
+
<th>Name</th>
|
|
779
|
+
<th>Type</th>
|
|
780
|
+
<th class="last">Description</th>
|
|
781
|
+
</tr>
|
|
782
|
+
</thead>
|
|
783
|
+
<tbody>
|
|
784
|
+
<tr>
|
|
785
|
+
<td class="name"><code>columnIndex</code></td>
|
|
786
|
+
<td class="type">
|
|
787
|
+
<span class="param-type">integer</span>
|
|
788
|
+
</td>
|
|
789
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
790
|
+
1</b></td>
|
|
791
|
+
</tr>
|
|
792
|
+
</tbody>
|
|
793
|
+
</table>
|
|
794
|
+
<dl class="details">
|
|
795
|
+
</dl>
|
|
796
|
+
<h5>Throws:</h5>
|
|
797
|
+
<ul>
|
|
798
|
+
<li>
|
|
799
|
+
<div class="param-desc">
|
|
800
|
+
Throws an error if the index parameter is not valid.
|
|
801
|
+
</div>
|
|
802
|
+
</li>
|
|
803
|
+
<li>
|
|
804
|
+
<div class="param-desc">
|
|
805
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
806
|
+
</div>
|
|
807
|
+
</li>
|
|
808
|
+
</ul>
|
|
809
|
+
<h5>Returns:</h5>
|
|
810
|
+
<div class="param-desc">
|
|
811
|
+
A JavaScript Date object representing the value
|
|
812
|
+
</div>
|
|
813
|
+
<dl>
|
|
814
|
+
<dt>
|
|
815
|
+
Type
|
|
816
|
+
</dt>
|
|
817
|
+
<dd>
|
|
818
|
+
<span class="param-type">Date</span>
|
|
819
|
+
</dd>
|
|
820
|
+
</dl>
|
|
821
|
+
</dd>
|
|
822
|
+
<dt>
|
|
823
|
+
<h4 class="name" id="getString"><span class="type-signature"></span>getString<span
|
|
824
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
825
|
+
</h4>
|
|
826
|
+
</dt>
|
|
827
|
+
<dd>
|
|
828
|
+
<div class="description">
|
|
829
|
+
Returns a string value of the specified column. getString is used for CHAR and VARCHAR column
|
|
830
|
+
types. ASCII only, not suitable for strings containing Unicode characters.
|
|
831
|
+
</div>
|
|
832
|
+
<h5>Parameters:</h5>
|
|
833
|
+
<table class="params">
|
|
834
|
+
<thead>
|
|
835
|
+
<tr>
|
|
836
|
+
<th>Name</th>
|
|
837
|
+
<th>Type</th>
|
|
838
|
+
<th class="last">Description</th>
|
|
839
|
+
</tr>
|
|
840
|
+
</thead>
|
|
841
|
+
<tbody>
|
|
842
|
+
<tr>
|
|
843
|
+
<td class="name"><code>columnIndex</code></td>
|
|
844
|
+
<td class="type">
|
|
845
|
+
<span class="param-type">integer</span>
|
|
846
|
+
</td>
|
|
847
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
848
|
+
</tr>
|
|
849
|
+
</tbody>
|
|
850
|
+
</table>
|
|
851
|
+
<dl class="details">
|
|
852
|
+
</dl>
|
|
853
|
+
<h5>Throws:</h5>
|
|
854
|
+
<ul>
|
|
855
|
+
<li>
|
|
856
|
+
<div class="param-desc">
|
|
857
|
+
Throws an error if the index parameter is not valid.
|
|
858
|
+
</div>
|
|
859
|
+
</li>
|
|
860
|
+
<li>
|
|
861
|
+
<div class="param-desc">
|
|
862
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
863
|
+
</div>
|
|
864
|
+
</li>
|
|
865
|
+
</ul>
|
|
866
|
+
<h5>Returns:</h5>
|
|
867
|
+
<div class="param-desc">
|
|
868
|
+
String representation
|
|
869
|
+
</div>
|
|
870
|
+
<dl>
|
|
871
|
+
<dt>
|
|
872
|
+
Type
|
|
873
|
+
</dt>
|
|
874
|
+
<dd>
|
|
875
|
+
<span class="param-type">string</span>
|
|
876
|
+
</dd>
|
|
877
|
+
</dl>
|
|
878
|
+
</dd>
|
|
879
|
+
<dt>
|
|
880
|
+
<h4 class="name" id="getText"><span class="type-signature"></span>getText<span class="signature">(columnIndex)</span><span
|
|
881
|
+
class="type-signature"> → {string}</span></h4>
|
|
882
|
+
</dt>
|
|
883
|
+
<dd>
|
|
884
|
+
<div class="description">
|
|
885
|
+
Returns a string value of the specified column. getText is used for TEXT column types.
|
|
886
|
+
</div>
|
|
887
|
+
<h5>Parameters:</h5>
|
|
888
|
+
<table class="params">
|
|
889
|
+
<thead>
|
|
890
|
+
<tr>
|
|
891
|
+
<th>Name</th>
|
|
892
|
+
<th>Type</th>
|
|
893
|
+
<th class="last">Description</th>
|
|
894
|
+
</tr>
|
|
895
|
+
</thead>
|
|
896
|
+
<tbody>
|
|
897
|
+
<tr>
|
|
898
|
+
<td class="name"><code>columnIndex</code></td>
|
|
899
|
+
<td class="type">
|
|
900
|
+
<span class="param-type">integer</span>
|
|
901
|
+
</td>
|
|
902
|
+
<td class="description last">The target column <b>starting from 1</b></td>
|
|
903
|
+
</tr>
|
|
904
|
+
</tbody>
|
|
905
|
+
</table>
|
|
906
|
+
<dl class="details">
|
|
907
|
+
</dl>
|
|
908
|
+
<h5>Throws:</h5>
|
|
909
|
+
<ul>
|
|
910
|
+
<li>
|
|
911
|
+
<div class="param-desc">
|
|
912
|
+
Throws an error if the index parameter is not valid.
|
|
913
|
+
</div>
|
|
914
|
+
</li>
|
|
915
|
+
<li>
|
|
916
|
+
<div class="param-desc">
|
|
917
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
918
|
+
</div>
|
|
919
|
+
</li>
|
|
920
|
+
</ul>
|
|
921
|
+
<h5>Returns:</h5>
|
|
922
|
+
<div class="param-desc">
|
|
923
|
+
String representation
|
|
924
|
+
</div>
|
|
925
|
+
<dl>
|
|
926
|
+
<dt>
|
|
927
|
+
Type
|
|
928
|
+
</dt>
|
|
929
|
+
<dd>
|
|
930
|
+
<span class="param-type">string</span>
|
|
931
|
+
</dd>
|
|
932
|
+
</dl>
|
|
933
|
+
</dd>
|
|
934
|
+
<dt>
|
|
935
|
+
<h4 class="name" id="getTime"><span class="type-signature"></span>getTime<span class="signature">(columnIndex)</span><span
|
|
936
|
+
class="type-signature"> → {Date}</span></h4>
|
|
937
|
+
</dt>
|
|
938
|
+
<dd>
|
|
939
|
+
<div class="description">
|
|
940
|
+
Used to retrieve the value of a TIME column in a ResultSet.
|
|
941
|
+
</div>
|
|
942
|
+
<h5>Parameters:</h5>
|
|
943
|
+
<table class="params">
|
|
944
|
+
<thead>
|
|
945
|
+
<tr>
|
|
946
|
+
<th>Name</th>
|
|
947
|
+
<th>Type</th>
|
|
948
|
+
<th class="last">Description</th>
|
|
949
|
+
</tr>
|
|
950
|
+
</thead>
|
|
951
|
+
<tbody>
|
|
952
|
+
<tr>
|
|
953
|
+
<td class="name"><code>columnIndex</code></td>
|
|
954
|
+
<td class="type">
|
|
955
|
+
<span class="param-type">integer</span>
|
|
956
|
+
</td>
|
|
957
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
958
|
+
1</b></td>
|
|
959
|
+
</tr>
|
|
960
|
+
</tbody>
|
|
961
|
+
</table>
|
|
962
|
+
<dl class="details">
|
|
963
|
+
</dl>
|
|
964
|
+
<h5>Throws:</h5>
|
|
965
|
+
<ul>
|
|
966
|
+
<li>
|
|
967
|
+
<div class="param-desc">
|
|
968
|
+
Throws an error if the index parameter is not valid.
|
|
969
|
+
</div>
|
|
970
|
+
</li>
|
|
971
|
+
<li>
|
|
972
|
+
<div class="param-desc">
|
|
973
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
974
|
+
</div>
|
|
975
|
+
</li>
|
|
976
|
+
</ul>
|
|
977
|
+
<h5>Returns:</h5>
|
|
978
|
+
<div class="param-desc">
|
|
979
|
+
A JavaScript Date object representing the value
|
|
980
|
+
</div>
|
|
981
|
+
<dl>
|
|
982
|
+
<dt>
|
|
983
|
+
Type
|
|
984
|
+
</dt>
|
|
985
|
+
<dd>
|
|
986
|
+
<span class="param-type">Date</span>
|
|
987
|
+
</dd>
|
|
988
|
+
</dl>
|
|
989
|
+
</dd>
|
|
990
|
+
<dt>
|
|
991
|
+
<h4 class="name" id="getTimestamp"><span class="type-signature"></span>getTimestamp<span
|
|
992
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {Date}</span>
|
|
993
|
+
</h4>
|
|
994
|
+
</dt>
|
|
995
|
+
<dd>
|
|
996
|
+
<div class="description">
|
|
997
|
+
Used to retrieve the value of a TIMESTAMP column in a ResultSet. <br>
|
|
998
|
+
As this type contains only time information and no date, the JavaScript's date object will
|
|
999
|
+
always be 1 Jan 1970 plus the time offset.<br>
|
|
1000
|
+
For example: if the stored value is 10:00:00, the JavaScript Date object will be: 1 Jan 1970
|
|
1001
|
+
10:00:00.
|
|
1002
|
+
</div>
|
|
1003
|
+
<h5>Parameters:</h5>
|
|
1004
|
+
<table class="params">
|
|
1005
|
+
<thead>
|
|
1006
|
+
<tr>
|
|
1007
|
+
<th>Name</th>
|
|
1008
|
+
<th>Type</th>
|
|
1009
|
+
<th class="last">Description</th>
|
|
1010
|
+
</tr>
|
|
1011
|
+
</thead>
|
|
1012
|
+
<tbody>
|
|
1013
|
+
<tr>
|
|
1014
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1015
|
+
<td class="type">
|
|
1016
|
+
<span class="param-type">integer</span>
|
|
1017
|
+
</td>
|
|
1018
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
1019
|
+
1</b></td>
|
|
1020
|
+
</tr>
|
|
1021
|
+
</tbody>
|
|
1022
|
+
</table>
|
|
1023
|
+
<dl class="details">
|
|
1024
|
+
</dl>
|
|
1025
|
+
<h5>Throws:</h5>
|
|
1026
|
+
<ul>
|
|
1027
|
+
<li>
|
|
1028
|
+
<div class="param-desc">
|
|
1029
|
+
Throws an error if the index parameter is not valid.
|
|
1030
|
+
</div>
|
|
1031
|
+
</li>
|
|
1032
|
+
<li>
|
|
1033
|
+
<div class="param-desc">
|
|
1034
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1035
|
+
</div>
|
|
1036
|
+
</li>
|
|
1037
|
+
</ul>
|
|
1038
|
+
<h5>Returns:</h5>
|
|
1039
|
+
<div class="param-desc">
|
|
1040
|
+
A JavaScript Date object representing the value<br>
|
|
1041
|
+
</div>
|
|
1042
|
+
<dl>
|
|
1043
|
+
<dt>
|
|
1044
|
+
Type
|
|
1045
|
+
</dt>
|
|
1046
|
+
<dd>
|
|
1047
|
+
<span class="param-type">Date</span>
|
|
1048
|
+
</dd>
|
|
1049
|
+
</dl>
|
|
1050
|
+
</dd>
|
|
1051
|
+
<dt>
|
|
1052
|
+
<h4 class="name" id="isClosed"><span class="type-signature"></span>isClosed<span class="signature">()</span><span
|
|
1053
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
1054
|
+
</dt>
|
|
1055
|
+
<dd>
|
|
1056
|
+
<div class="description">
|
|
1057
|
+
Checks if the ResultSet is closed.
|
|
1058
|
+
</div>
|
|
1059
|
+
<dl class="details">
|
|
1060
|
+
</dl>
|
|
1061
|
+
<h5>Throws:</h5>
|
|
1062
|
+
<ul>
|
|
1063
|
+
<li>
|
|
1064
|
+
<div class="param-desc">
|
|
1065
|
+
Throws an error if the object the method is being called on is not valid.
|
|
1066
|
+
</div>
|
|
1067
|
+
</li>
|
|
1068
|
+
<li>
|
|
1069
|
+
<div class="param-desc">
|
|
1070
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1071
|
+
</div>
|
|
1072
|
+
</li>
|
|
1073
|
+
</ul>
|
|
1074
|
+
<h5>Returns:</h5>
|
|
1075
|
+
<div class="param-desc">
|
|
1076
|
+
Returns true if the ResultSet is already closed, false if not
|
|
1077
|
+
</div>
|
|
1078
|
+
<dl>
|
|
1079
|
+
<dt>
|
|
1080
|
+
Type
|
|
1081
|
+
</dt>
|
|
1082
|
+
<dd>
|
|
1083
|
+
<span class="param-type">boolean</span>
|
|
1084
|
+
</dd>
|
|
1085
|
+
</dl>
|
|
1086
|
+
</dd>
|
|
1087
|
+
<dt>
|
|
1088
|
+
<h4 class="name" id="next"><span class="type-signature"></span>next<span class="signature">()</span><span
|
|
1089
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
1090
|
+
</dt>
|
|
1091
|
+
<dd>
|
|
1092
|
+
<div class="description">
|
|
1093
|
+
Fetches the next row
|
|
1094
|
+
</div>
|
|
1095
|
+
<dl class="details">
|
|
1096
|
+
</dl>
|
|
1097
|
+
<h5>Returns:</h5>
|
|
1098
|
+
<div class="param-desc">
|
|
1099
|
+
True if successful
|
|
1100
|
+
</div>
|
|
1101
|
+
<dl>
|
|
1102
|
+
<dt>
|
|
1103
|
+
Type
|
|
1104
|
+
</dt>
|
|
1105
|
+
<dd>
|
|
1106
|
+
<span class="param-type">boolean</span>
|
|
1107
|
+
</dd>
|
|
1108
|
+
</dl>
|
|
1109
|
+
</dd>
|
|
1110
|
+
</dl>
|
|
1111
|
+
</article>
|
|
1112
|
+
</section>
|
|
1113
|
+
</div>
|
|
1114
|
+
<nav>
|
|
1115
|
+
<h2><a href="index.html">Index</a></h2>
|
|
1116
|
+
<h3>Classes</h3>
|
|
1117
|
+
<table>
|
|
1118
|
+
<tr>
|
|
1119
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
1120
|
+
<td class="oblique">$.security</td>
|
|
1121
|
+
</tr>
|
|
1122
|
+
<tr>
|
|
1123
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
1124
|
+
<td class="oblique">$</td>
|
|
1125
|
+
</tr>
|
|
1126
|
+
<tr>
|
|
1127
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
1128
|
+
<td class="oblique">$.web</td>
|
|
1129
|
+
</tr>
|
|
1130
|
+
<tr>
|
|
1131
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
1132
|
+
<td class="oblique">$.db</td>
|
|
1133
|
+
</tr>
|
|
1134
|
+
<tr>
|
|
1135
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
1136
|
+
<td class="oblique">$.net.http</td>
|
|
1137
|
+
</tr>
|
|
1138
|
+
<tr>
|
|
1139
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
1140
|
+
<td class="oblique">$.hdb</td>
|
|
1141
|
+
</tr>
|
|
1142
|
+
<tr>
|
|
1143
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
1144
|
+
<td class="oblique">$.db</td>
|
|
1145
|
+
</tr>
|
|
1146
|
+
<tr>
|
|
1147
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
1148
|
+
<td class="oblique">$.hdb</td>
|
|
1149
|
+
</tr>
|
|
1150
|
+
<tr>
|
|
1151
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
1152
|
+
<td class="oblique">$.net</td>
|
|
1153
|
+
</tr>
|
|
1154
|
+
<tr>
|
|
1155
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
1156
|
+
<td class="oblique">$.net.http</td>
|
|
1157
|
+
</tr>
|
|
1158
|
+
<tr>
|
|
1159
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
1160
|
+
<td class="oblique">$.web</td>
|
|
1161
|
+
</tr>
|
|
1162
|
+
<tr>
|
|
1163
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
1164
|
+
<td class="oblique">$.jobs</td>
|
|
1165
|
+
</tr>
|
|
1166
|
+
<tr>
|
|
1167
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
1168
|
+
<td class="oblique">$.jobs</td>
|
|
1169
|
+
</tr>
|
|
1170
|
+
<tr>
|
|
1171
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
1172
|
+
<td class="oblique">$.jobs</td>
|
|
1173
|
+
</tr>
|
|
1174
|
+
<tr>
|
|
1175
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
1176
|
+
<td class="oblique">$.net</td>
|
|
1177
|
+
</tr>
|
|
1178
|
+
<tr>
|
|
1179
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
1180
|
+
<td class="oblique">$.db</td>
|
|
1181
|
+
</tr>
|
|
1182
|
+
<tr>
|
|
1183
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
1184
|
+
<td class="oblique">$.net.Mail</td>
|
|
1185
|
+
</tr>
|
|
1186
|
+
<tr>
|
|
1187
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
1188
|
+
<td class="oblique">$.db</td>
|
|
1189
|
+
</tr>
|
|
1190
|
+
<tr>
|
|
1191
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
1192
|
+
<td class="oblique">$.hdb</td>
|
|
1193
|
+
</tr>
|
|
1194
|
+
<tr>
|
|
1195
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
1196
|
+
<td class="oblique">$.net.http</td>
|
|
1197
|
+
</tr>
|
|
1198
|
+
<tr>
|
|
1199
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
1200
|
+
<td class="oblique">$.db</td>
|
|
1201
|
+
</tr>
|
|
1202
|
+
<tr>
|
|
1203
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
1204
|
+
<td class="oblique">$.hdb</td>
|
|
1205
|
+
</tr>
|
|
1206
|
+
<tr>
|
|
1207
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
1208
|
+
<td class="oblique">$.hdb</td>
|
|
1209
|
+
</tr>
|
|
1210
|
+
<tr>
|
|
1211
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
1212
|
+
<td class="oblique">$.db</td>
|
|
1213
|
+
</tr>
|
|
1214
|
+
<tr>
|
|
1215
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
1216
|
+
<td class="oblique">$.hdb</td>
|
|
1217
|
+
</tr>
|
|
1218
|
+
<tr>
|
|
1219
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
1220
|
+
<td class="oblique">$.util</td>
|
|
1221
|
+
</tr>
|
|
1222
|
+
<tr>
|
|
1223
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
1224
|
+
<td class="oblique">$</td>
|
|
1225
|
+
</tr>
|
|
1226
|
+
<tr>
|
|
1227
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
1228
|
+
<td class="oblique">$.text.analysis</td>
|
|
1229
|
+
</tr>
|
|
1230
|
+
<tr>
|
|
1231
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
1232
|
+
<td class="oblique">$.text.mining</td>
|
|
1233
|
+
</tr>
|
|
1234
|
+
<tr>
|
|
1235
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
1236
|
+
<td class="oblique">$.net</td>
|
|
1237
|
+
</tr>
|
|
1238
|
+
<tr>
|
|
1239
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
1240
|
+
<td class="oblique">$.db</td>
|
|
1241
|
+
</tr>
|
|
1242
|
+
<tr>
|
|
1243
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
1244
|
+
<td class="oblique">$.hdb</td>
|
|
1245
|
+
</tr>
|
|
1246
|
+
<tr>
|
|
1247
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
1248
|
+
<td class="oblique">$.security</td>
|
|
1249
|
+
</tr>
|
|
1250
|
+
<tr>
|
|
1251
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
1252
|
+
<td class="oblique">$.web</td>
|
|
1253
|
+
</tr>
|
|
1254
|
+
<tr>
|
|
1255
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
1256
|
+
<td class="oblique">$.web</td>
|
|
1257
|
+
</tr>
|
|
1258
|
+
<tr>
|
|
1259
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
1260
|
+
<td class="oblique">$.web</td>
|
|
1261
|
+
</tr>
|
|
1262
|
+
<tr>
|
|
1263
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
1264
|
+
<td class="oblique">$.web</td>
|
|
1265
|
+
</tr>
|
|
1266
|
+
<tr>
|
|
1267
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
1268
|
+
<td class="oblique">$.web</td>
|
|
1269
|
+
</tr>
|
|
1270
|
+
<tr>
|
|
1271
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
1272
|
+
<td class="oblique">$.util</td>
|
|
1273
|
+
</tr>
|
|
1274
|
+
</table>
|
|
1275
|
+
<h3>Namespaces</h3>
|
|
1276
|
+
<ul>
|
|
1277
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
1278
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
1279
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
1280
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
1281
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
1282
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
1283
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
1284
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
1285
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
1286
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
1287
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
1288
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
1289
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
1290
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
1291
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
1292
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
1293
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
1294
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
1295
|
+
</ul>
|
|
1296
|
+
</nav>
|
|
1297
|
+
<br clear="both">
|
|
1298
|
+
<footer>
|
|
1299
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
1300
|
+
&
|
|
1301
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
1302
|
+
</footer>
|
|
1303
|
+
<script>prettyPrint();</script>
|
|
1304
|
+
<script src="scripts/linenumber.js"></script>
|
|
1305
|
+
|
|
1306
|
+
</body>
|
|
1307
|
+
|
|
1308
|
+
</html>
|