@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,800 @@
|
|
|
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
|
+
|
|
15
|
+
<link rel="canonical" href="$.db.ResultSetMetaData.html">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="main">
|
|
19
|
+
<h1 class="page-title">Class: ResultSetMetaData</h1>
|
|
20
|
+
<section>
|
|
21
|
+
<header>
|
|
22
|
+
<h2>
|
|
23
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.db.html">.db</a>.</span>
|
|
24
|
+
ResultSetMetaData
|
|
25
|
+
</h2>
|
|
26
|
+
<div class="class-description">$.db.ResultSetMetaData represents the metadata of a result set</div>
|
|
27
|
+
</header>
|
|
28
|
+
<article>
|
|
29
|
+
<div class="container-overview">
|
|
30
|
+
<dt>
|
|
31
|
+
<h4 class="name" id="ResultSetMetaData"><span class="type-signature"></span>new
|
|
32
|
+
ResultSetMetaData<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
33
|
+
</dt>
|
|
34
|
+
<dd>
|
|
35
|
+
<div class="description">
|
|
36
|
+
Represents the metadata of a result set
|
|
37
|
+
</div>
|
|
38
|
+
<dl class="details">
|
|
39
|
+
</dl>
|
|
40
|
+
</dd>
|
|
41
|
+
</div>
|
|
42
|
+
<h3 class="subsection-title">Methods</h3>
|
|
43
|
+
<dl>
|
|
44
|
+
<dt>
|
|
45
|
+
<h4 class="name" id="getCatalogName"><span class="type-signature"></span>getCatalogName<span
|
|
46
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
47
|
+
</h4>
|
|
48
|
+
</dt>
|
|
49
|
+
<dd>
|
|
50
|
+
<div class="description">
|
|
51
|
+
Returns the catalog name for the specified column
|
|
52
|
+
</div>
|
|
53
|
+
<h5>Parameters:</h5>
|
|
54
|
+
<table class="params">
|
|
55
|
+
<thead>
|
|
56
|
+
<tr>
|
|
57
|
+
<th>Name</th>
|
|
58
|
+
<th>Type</th>
|
|
59
|
+
<th class="last">Description</th>
|
|
60
|
+
</tr>
|
|
61
|
+
</thead>
|
|
62
|
+
<tbody>
|
|
63
|
+
<tr>
|
|
64
|
+
<td class="name"><code>columnIndex</code></td>
|
|
65
|
+
<td class="type">
|
|
66
|
+
<span class="param-type">integer</span>
|
|
67
|
+
</td>
|
|
68
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
69
|
+
1</b></td>
|
|
70
|
+
</tr>
|
|
71
|
+
</tbody>
|
|
72
|
+
</table>
|
|
73
|
+
<dl class="details">
|
|
74
|
+
</dl>
|
|
75
|
+
<h5>Throws:</h5>
|
|
76
|
+
<ul>
|
|
77
|
+
<li>
|
|
78
|
+
<div class="param-desc">
|
|
79
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
80
|
+
not valid.
|
|
81
|
+
</div>
|
|
82
|
+
</li>
|
|
83
|
+
<li>
|
|
84
|
+
<div class="param-desc">
|
|
85
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
86
|
+
</div>
|
|
87
|
+
</li>
|
|
88
|
+
</ul>
|
|
89
|
+
<h5>Returns:</h5>
|
|
90
|
+
<div class="param-desc">
|
|
91
|
+
The catalog name for the specified column
|
|
92
|
+
</div>
|
|
93
|
+
<dl>
|
|
94
|
+
<dt>
|
|
95
|
+
Type
|
|
96
|
+
</dt>
|
|
97
|
+
<dd>
|
|
98
|
+
<span class="param-type">string</span>
|
|
99
|
+
</dd>
|
|
100
|
+
</dl>
|
|
101
|
+
</dd>
|
|
102
|
+
<dt>
|
|
103
|
+
<h4 class="name" id="getColumnCount"><span class="type-signature"></span>getColumnCount<span
|
|
104
|
+
class="signature">()</span><span class="type-signature"> → {integer}</span></h4>
|
|
105
|
+
</dt>
|
|
106
|
+
<dd>
|
|
107
|
+
<div class="description">
|
|
108
|
+
Returns the number of the columns in the result set
|
|
109
|
+
</div>
|
|
110
|
+
<dl class="details">
|
|
111
|
+
</dl>
|
|
112
|
+
<h5>Throws:</h5>
|
|
113
|
+
<ul>
|
|
114
|
+
<li>
|
|
115
|
+
<div class="param-desc">
|
|
116
|
+
Throws an error if the object the method is being called on is not valid.
|
|
117
|
+
</div>
|
|
118
|
+
</li>
|
|
119
|
+
<li>
|
|
120
|
+
<div class="param-desc">
|
|
121
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
122
|
+
</div>
|
|
123
|
+
</li>
|
|
124
|
+
</ul>
|
|
125
|
+
<h5>Returns:</h5>
|
|
126
|
+
<div class="param-desc">
|
|
127
|
+
The number of the columns in the result set
|
|
128
|
+
</div>
|
|
129
|
+
<dl>
|
|
130
|
+
<dt>
|
|
131
|
+
Type
|
|
132
|
+
</dt>
|
|
133
|
+
<dd>
|
|
134
|
+
<span class="param-type">integer</span>
|
|
135
|
+
</dd>
|
|
136
|
+
</dl>
|
|
137
|
+
</dd>
|
|
138
|
+
<dt>
|
|
139
|
+
<h4 class="name" id="getColumnDisplaySize"><span
|
|
140
|
+
class="type-signature"></span>getColumnDisplaySize<span
|
|
141
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {integer}</span>
|
|
142
|
+
</h4>
|
|
143
|
+
</dt>
|
|
144
|
+
<dd>
|
|
145
|
+
<div class="description">
|
|
146
|
+
Returns the column display size of the specified column
|
|
147
|
+
</div>
|
|
148
|
+
<h5>Parameters:</h5>
|
|
149
|
+
<table class="params">
|
|
150
|
+
<thead>
|
|
151
|
+
<tr>
|
|
152
|
+
<th>Name</th>
|
|
153
|
+
<th>Type</th>
|
|
154
|
+
<th class="last">Description</th>
|
|
155
|
+
</tr>
|
|
156
|
+
</thead>
|
|
157
|
+
<tbody>
|
|
158
|
+
<tr>
|
|
159
|
+
<td class="name"><code>columnIndex</code></td>
|
|
160
|
+
<td class="type">
|
|
161
|
+
<span class="param-type">integer</span>
|
|
162
|
+
</td>
|
|
163
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
164
|
+
1</b></td>
|
|
165
|
+
</tr>
|
|
166
|
+
</tbody>
|
|
167
|
+
</table>
|
|
168
|
+
<dl class="details">
|
|
169
|
+
</dl>
|
|
170
|
+
<h5>Throws:</h5>
|
|
171
|
+
<ul>
|
|
172
|
+
<li>
|
|
173
|
+
<div class="param-desc">
|
|
174
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
175
|
+
not valid.
|
|
176
|
+
</div>
|
|
177
|
+
</li>
|
|
178
|
+
<li>
|
|
179
|
+
<div class="param-desc">
|
|
180
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
181
|
+
</div>
|
|
182
|
+
</li>
|
|
183
|
+
</ul>
|
|
184
|
+
<h5>Returns:</h5>
|
|
185
|
+
<div class="param-desc">
|
|
186
|
+
The column display size of the specified column
|
|
187
|
+
</div>
|
|
188
|
+
<dl>
|
|
189
|
+
<dt>
|
|
190
|
+
Type
|
|
191
|
+
</dt>
|
|
192
|
+
<dd>
|
|
193
|
+
<span class="param-type">integer</span>
|
|
194
|
+
</dd>
|
|
195
|
+
</dl>
|
|
196
|
+
</dd>
|
|
197
|
+
<dt>
|
|
198
|
+
<h4 class="name" id="getColumnLabel"><span class="type-signature"></span>getColumnLabel<span
|
|
199
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
200
|
+
</h4>
|
|
201
|
+
</dt>
|
|
202
|
+
<dd>
|
|
203
|
+
<div class="description">
|
|
204
|
+
Returns the alias or name of the specified column
|
|
205
|
+
</div>
|
|
206
|
+
<h5>Parameters:</h5>
|
|
207
|
+
<table class="params">
|
|
208
|
+
<thead>
|
|
209
|
+
<tr>
|
|
210
|
+
<th>Name</th>
|
|
211
|
+
<th>Type</th>
|
|
212
|
+
<th class="last">Description</th>
|
|
213
|
+
</tr>
|
|
214
|
+
</thead>
|
|
215
|
+
<tbody>
|
|
216
|
+
<tr>
|
|
217
|
+
<td class="name"><code>columnIndex</code></td>
|
|
218
|
+
<td class="type">
|
|
219
|
+
<span class="param-type">integer</span>
|
|
220
|
+
</td>
|
|
221
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
222
|
+
1</b></td>
|
|
223
|
+
</tr>
|
|
224
|
+
</tbody>
|
|
225
|
+
</table>
|
|
226
|
+
<dl class="details">
|
|
227
|
+
</dl>
|
|
228
|
+
<h5>Throws:</h5>
|
|
229
|
+
<ul>
|
|
230
|
+
<li>
|
|
231
|
+
<div class="param-desc">
|
|
232
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
233
|
+
not valid.
|
|
234
|
+
</div>
|
|
235
|
+
</li>
|
|
236
|
+
<li>
|
|
237
|
+
<div class="param-desc">
|
|
238
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
239
|
+
</div>
|
|
240
|
+
</li>
|
|
241
|
+
</ul>
|
|
242
|
+
<h5>Returns:</h5>
|
|
243
|
+
<div class="param-desc">
|
|
244
|
+
The alias or name of the specified column
|
|
245
|
+
</div>
|
|
246
|
+
<dl>
|
|
247
|
+
<dt>
|
|
248
|
+
Type
|
|
249
|
+
</dt>
|
|
250
|
+
<dd>
|
|
251
|
+
<span class="param-type">string</span>
|
|
252
|
+
</dd>
|
|
253
|
+
</dl>
|
|
254
|
+
</dd>
|
|
255
|
+
<dt>
|
|
256
|
+
<h4 class="name" id="getColumnName"><span class="type-signature"></span>getColumnName<span
|
|
257
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
258
|
+
</h4>
|
|
259
|
+
</dt>
|
|
260
|
+
<dd>
|
|
261
|
+
<div class="description">
|
|
262
|
+
Returns the name of the specified column
|
|
263
|
+
</div>
|
|
264
|
+
<h5>Parameters:</h5>
|
|
265
|
+
<table class="params">
|
|
266
|
+
<thead>
|
|
267
|
+
<tr>
|
|
268
|
+
<th>Name</th>
|
|
269
|
+
<th>Type</th>
|
|
270
|
+
<th class="last">Description</th>
|
|
271
|
+
</tr>
|
|
272
|
+
</thead>
|
|
273
|
+
<tbody>
|
|
274
|
+
<tr>
|
|
275
|
+
<td class="name"><code>columnIndex</code></td>
|
|
276
|
+
<td class="type">
|
|
277
|
+
<span class="param-type">integer</span>
|
|
278
|
+
</td>
|
|
279
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
280
|
+
1</b></td>
|
|
281
|
+
</tr>
|
|
282
|
+
</tbody>
|
|
283
|
+
</table>
|
|
284
|
+
<dl class="details">
|
|
285
|
+
</dl>
|
|
286
|
+
<h5>Throws:</h5>
|
|
287
|
+
<ul>
|
|
288
|
+
<li>
|
|
289
|
+
<div class="param-desc">
|
|
290
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
291
|
+
not valid.
|
|
292
|
+
</div>
|
|
293
|
+
</li>
|
|
294
|
+
<li>
|
|
295
|
+
<div class="param-desc">
|
|
296
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
297
|
+
</div>
|
|
298
|
+
</li>
|
|
299
|
+
</ul>
|
|
300
|
+
<h5>Returns:</h5>
|
|
301
|
+
<div class="param-desc">
|
|
302
|
+
The name of the specified column
|
|
303
|
+
</div>
|
|
304
|
+
<dl>
|
|
305
|
+
<dt>
|
|
306
|
+
Type
|
|
307
|
+
</dt>
|
|
308
|
+
<dd>
|
|
309
|
+
<span class="param-type">string</span>
|
|
310
|
+
</dd>
|
|
311
|
+
</dl>
|
|
312
|
+
</dd>
|
|
313
|
+
<dt>
|
|
314
|
+
<h4 class="name" id="getColumnType"><span class="type-signature"></span>getColumnType<span
|
|
315
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {<a
|
|
316
|
+
href="$.db.html#types">$.db.types</a>}</span></h4>
|
|
317
|
+
</dt>
|
|
318
|
+
<dd>
|
|
319
|
+
<div class="description">
|
|
320
|
+
Returns the type of the specified column
|
|
321
|
+
</div>
|
|
322
|
+
<h5>Parameters:</h5>
|
|
323
|
+
<table class="params">
|
|
324
|
+
<thead>
|
|
325
|
+
<tr>
|
|
326
|
+
<th>Name</th>
|
|
327
|
+
<th>Type</th>
|
|
328
|
+
<th class="last">Description</th>
|
|
329
|
+
</tr>
|
|
330
|
+
</thead>
|
|
331
|
+
<tbody>
|
|
332
|
+
<tr>
|
|
333
|
+
<td class="name"><code>columnIndex</code></td>
|
|
334
|
+
<td class="type">
|
|
335
|
+
<span class="param-type">integer</span>
|
|
336
|
+
</td>
|
|
337
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
338
|
+
1</b></td>
|
|
339
|
+
</tr>
|
|
340
|
+
</tbody>
|
|
341
|
+
</table>
|
|
342
|
+
<dl class="details">
|
|
343
|
+
</dl>
|
|
344
|
+
<h5>Throws:</h5>
|
|
345
|
+
<ul>
|
|
346
|
+
<li>
|
|
347
|
+
<div class="param-desc">
|
|
348
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
349
|
+
not valid.
|
|
350
|
+
</div>
|
|
351
|
+
</li>
|
|
352
|
+
<li>
|
|
353
|
+
<div class="param-desc">
|
|
354
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
355
|
+
</div>
|
|
356
|
+
</li>
|
|
357
|
+
</ul>
|
|
358
|
+
<h5>Returns:</h5>
|
|
359
|
+
<div class="param-desc">
|
|
360
|
+
The type of the column
|
|
361
|
+
</div>
|
|
362
|
+
<dl>
|
|
363
|
+
<dt>
|
|
364
|
+
Type
|
|
365
|
+
</dt>
|
|
366
|
+
<dd>
|
|
367
|
+
<span class="param-type"><a href="$.db.html#types">$.db.types</a></span>
|
|
368
|
+
</dd>
|
|
369
|
+
</dl>
|
|
370
|
+
</dd>
|
|
371
|
+
<dt>
|
|
372
|
+
<h4 class="name" id="getColumnTypeName"><span class="type-signature"></span>getColumnTypeName<span
|
|
373
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
374
|
+
</h4>
|
|
375
|
+
</dt>
|
|
376
|
+
<dd>
|
|
377
|
+
<div class="description">
|
|
378
|
+
Returns the name of the specified column type
|
|
379
|
+
</div>
|
|
380
|
+
<h5>Parameters:</h5>
|
|
381
|
+
<table class="params">
|
|
382
|
+
<thead>
|
|
383
|
+
<tr>
|
|
384
|
+
<th>Name</th>
|
|
385
|
+
<th>Type</th>
|
|
386
|
+
<th class="last">Description</th>
|
|
387
|
+
</tr>
|
|
388
|
+
</thead>
|
|
389
|
+
<tbody>
|
|
390
|
+
<tr>
|
|
391
|
+
<td class="name"><code>columnIndex</code></td>
|
|
392
|
+
<td class="type">
|
|
393
|
+
<span class="param-type">integer</span>
|
|
394
|
+
</td>
|
|
395
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
396
|
+
1</b></td>
|
|
397
|
+
</tr>
|
|
398
|
+
</tbody>
|
|
399
|
+
</table>
|
|
400
|
+
<dl class="details">
|
|
401
|
+
</dl>
|
|
402
|
+
<h5>Throws:</h5>
|
|
403
|
+
<ul>
|
|
404
|
+
<li>
|
|
405
|
+
<div class="param-desc">
|
|
406
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
407
|
+
not valid.
|
|
408
|
+
</div>
|
|
409
|
+
</li>
|
|
410
|
+
<li>
|
|
411
|
+
<div class="param-desc">
|
|
412
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
413
|
+
</div>
|
|
414
|
+
</li>
|
|
415
|
+
</ul>
|
|
416
|
+
<h5>Returns:</h5>
|
|
417
|
+
<div class="param-desc">
|
|
418
|
+
The name of the column type
|
|
419
|
+
</div>
|
|
420
|
+
<dl>
|
|
421
|
+
<dt>
|
|
422
|
+
Type
|
|
423
|
+
</dt>
|
|
424
|
+
<dd>
|
|
425
|
+
<span class="param-type">string</span>
|
|
426
|
+
</dd>
|
|
427
|
+
</dl>
|
|
428
|
+
</dd>
|
|
429
|
+
<dt>
|
|
430
|
+
<h4 class="name" id="getPrecision"><span class="type-signature"></span>getPrecision<span
|
|
431
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {integer}</span>
|
|
432
|
+
</h4>
|
|
433
|
+
</dt>
|
|
434
|
+
<dd>
|
|
435
|
+
<div class="description">
|
|
436
|
+
Returns the precision of the specified column
|
|
437
|
+
</div>
|
|
438
|
+
<h5>Parameters:</h5>
|
|
439
|
+
<table class="params">
|
|
440
|
+
<thead>
|
|
441
|
+
<tr>
|
|
442
|
+
<th>Name</th>
|
|
443
|
+
<th>Type</th>
|
|
444
|
+
<th class="last">Description</th>
|
|
445
|
+
</tr>
|
|
446
|
+
</thead>
|
|
447
|
+
<tbody>
|
|
448
|
+
<tr>
|
|
449
|
+
<td class="name"><code>columnIndex</code></td>
|
|
450
|
+
<td class="type">
|
|
451
|
+
<span class="param-type">integer</span>
|
|
452
|
+
</td>
|
|
453
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
454
|
+
1</b></td>
|
|
455
|
+
</tr>
|
|
456
|
+
</tbody>
|
|
457
|
+
</table>
|
|
458
|
+
<dl class="details">
|
|
459
|
+
</dl>
|
|
460
|
+
<h5>Throws:</h5>
|
|
461
|
+
<ul>
|
|
462
|
+
<li>
|
|
463
|
+
<div class="param-desc">
|
|
464
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
465
|
+
not valid.
|
|
466
|
+
</div>
|
|
467
|
+
</li>
|
|
468
|
+
<li>
|
|
469
|
+
<div class="param-desc">
|
|
470
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
471
|
+
</div>
|
|
472
|
+
</li>
|
|
473
|
+
</ul>
|
|
474
|
+
<h5>Returns:</h5>
|
|
475
|
+
<div class="param-desc">
|
|
476
|
+
The precision of the specified column
|
|
477
|
+
</div>
|
|
478
|
+
<dl>
|
|
479
|
+
<dt>
|
|
480
|
+
Type
|
|
481
|
+
</dt>
|
|
482
|
+
<dd>
|
|
483
|
+
<span class="param-type">integer</span>
|
|
484
|
+
</dd>
|
|
485
|
+
</dl>
|
|
486
|
+
</dd>
|
|
487
|
+
<dt>
|
|
488
|
+
<h4 class="name" id="getScale"><span class="type-signature"></span>getScale<span class="signature">(columnIndex)</span><span
|
|
489
|
+
class="type-signature"> → {integer}</span></h4>
|
|
490
|
+
</dt>
|
|
491
|
+
<dd>
|
|
492
|
+
<div class="description">
|
|
493
|
+
Returns the scale of the specified column
|
|
494
|
+
</div>
|
|
495
|
+
<h5>Parameters:</h5>
|
|
496
|
+
<table class="params">
|
|
497
|
+
<thead>
|
|
498
|
+
<tr>
|
|
499
|
+
<th>Name</th>
|
|
500
|
+
<th>Type</th>
|
|
501
|
+
<th class="last">Description</th>
|
|
502
|
+
</tr>
|
|
503
|
+
</thead>
|
|
504
|
+
<tbody>
|
|
505
|
+
<tr>
|
|
506
|
+
<td class="name"><code>columnIndex</code></td>
|
|
507
|
+
<td class="type">
|
|
508
|
+
<span class="param-type">integer</span>
|
|
509
|
+
</td>
|
|
510
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
511
|
+
1</b></td>
|
|
512
|
+
</tr>
|
|
513
|
+
</tbody>
|
|
514
|
+
</table>
|
|
515
|
+
<dl class="details">
|
|
516
|
+
</dl>
|
|
517
|
+
<h5>Throws:</h5>
|
|
518
|
+
<ul>
|
|
519
|
+
<li>
|
|
520
|
+
<div class="param-desc">
|
|
521
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
522
|
+
not valid.
|
|
523
|
+
</div>
|
|
524
|
+
</li>
|
|
525
|
+
<li>
|
|
526
|
+
<div class="param-desc">
|
|
527
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
528
|
+
</div>
|
|
529
|
+
</li>
|
|
530
|
+
</ul>
|
|
531
|
+
<h5>Returns:</h5>
|
|
532
|
+
<div class="param-desc">
|
|
533
|
+
The scale of the specified column
|
|
534
|
+
</div>
|
|
535
|
+
<dl>
|
|
536
|
+
<dt>
|
|
537
|
+
Type
|
|
538
|
+
</dt>
|
|
539
|
+
<dd>
|
|
540
|
+
<span class="param-type">integer</span>
|
|
541
|
+
</dd>
|
|
542
|
+
</dl>
|
|
543
|
+
</dd>
|
|
544
|
+
<dt>
|
|
545
|
+
<h4 class="name" id="getTableName"><span class="type-signature"></span>getTableName<span
|
|
546
|
+
class="signature">(columnIndex)</span><span class="type-signature"> → {string}</span>
|
|
547
|
+
</h4>
|
|
548
|
+
</dt>
|
|
549
|
+
<dd>
|
|
550
|
+
<div class="description">
|
|
551
|
+
Returns the table name for the specified column
|
|
552
|
+
</div>
|
|
553
|
+
<h5>Parameters:</h5>
|
|
554
|
+
<table class="params">
|
|
555
|
+
<thead>
|
|
556
|
+
<tr>
|
|
557
|
+
<th>Name</th>
|
|
558
|
+
<th>Type</th>
|
|
559
|
+
<th class="last">Description</th>
|
|
560
|
+
</tr>
|
|
561
|
+
</thead>
|
|
562
|
+
<tbody>
|
|
563
|
+
<tr>
|
|
564
|
+
<td class="name"><code>columnIndex</code></td>
|
|
565
|
+
<td class="type">
|
|
566
|
+
<span class="param-type">integer</span>
|
|
567
|
+
</td>
|
|
568
|
+
<td class="description last">The index of the column in the result set <b>starting from
|
|
569
|
+
1</b></td>
|
|
570
|
+
</tr>
|
|
571
|
+
</tbody>
|
|
572
|
+
</table>
|
|
573
|
+
<dl class="details">
|
|
574
|
+
</dl>
|
|
575
|
+
<h5>Throws:</h5>
|
|
576
|
+
<ul>
|
|
577
|
+
<li>
|
|
578
|
+
<div class="param-desc">
|
|
579
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
580
|
+
not valid.
|
|
581
|
+
</div>
|
|
582
|
+
</li>
|
|
583
|
+
<li>
|
|
584
|
+
<div class="param-desc">
|
|
585
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
586
|
+
</div>
|
|
587
|
+
</li>
|
|
588
|
+
</ul>
|
|
589
|
+
<h5>Returns:</h5>
|
|
590
|
+
<div class="param-desc">
|
|
591
|
+
The table name for the specified column
|
|
592
|
+
</div>
|
|
593
|
+
<dl>
|
|
594
|
+
<dt>
|
|
595
|
+
Type
|
|
596
|
+
</dt>
|
|
597
|
+
<dd>
|
|
598
|
+
<span class="param-type">string</span>
|
|
599
|
+
</dd>
|
|
600
|
+
</dl>
|
|
601
|
+
</dd>
|
|
602
|
+
</dl>
|
|
603
|
+
</article>
|
|
604
|
+
</section>
|
|
605
|
+
</div>
|
|
606
|
+
<nav>
|
|
607
|
+
<h2><a href="index.html">Index</a></h2>
|
|
608
|
+
<h3>Classes</h3>
|
|
609
|
+
<table>
|
|
610
|
+
<tr>
|
|
611
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
612
|
+
<td class="oblique">$.security</td>
|
|
613
|
+
</tr>
|
|
614
|
+
<tr>
|
|
615
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
616
|
+
<td class="oblique">$</td>
|
|
617
|
+
</tr>
|
|
618
|
+
<tr>
|
|
619
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
620
|
+
<td class="oblique">$.web</td>
|
|
621
|
+
</tr>
|
|
622
|
+
<tr>
|
|
623
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
624
|
+
<td class="oblique">$.db</td>
|
|
625
|
+
</tr>
|
|
626
|
+
<tr>
|
|
627
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
628
|
+
<td class="oblique">$.net.http</td>
|
|
629
|
+
</tr>
|
|
630
|
+
<tr>
|
|
631
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
632
|
+
<td class="oblique">$.hdb</td>
|
|
633
|
+
</tr>
|
|
634
|
+
<tr>
|
|
635
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
636
|
+
<td class="oblique">$.db</td>
|
|
637
|
+
</tr>
|
|
638
|
+
<tr>
|
|
639
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
640
|
+
<td class="oblique">$.hdb</td>
|
|
641
|
+
</tr>
|
|
642
|
+
<tr>
|
|
643
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
644
|
+
<td class="oblique">$.net</td>
|
|
645
|
+
</tr>
|
|
646
|
+
<tr>
|
|
647
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
648
|
+
<td class="oblique">$.net.http</td>
|
|
649
|
+
</tr>
|
|
650
|
+
<tr>
|
|
651
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
652
|
+
<td class="oblique">$.web</td>
|
|
653
|
+
</tr>
|
|
654
|
+
<tr>
|
|
655
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
656
|
+
<td class="oblique">$.jobs</td>
|
|
657
|
+
</tr>
|
|
658
|
+
<tr>
|
|
659
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
660
|
+
<td class="oblique">$.jobs</td>
|
|
661
|
+
</tr>
|
|
662
|
+
<tr>
|
|
663
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
664
|
+
<td class="oblique">$.jobs</td>
|
|
665
|
+
</tr>
|
|
666
|
+
<tr>
|
|
667
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
668
|
+
<td class="oblique">$.net</td>
|
|
669
|
+
</tr>
|
|
670
|
+
<tr>
|
|
671
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
672
|
+
<td class="oblique">$.db</td>
|
|
673
|
+
</tr>
|
|
674
|
+
<tr>
|
|
675
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
676
|
+
<td class="oblique">$.net.Mail</td>
|
|
677
|
+
</tr>
|
|
678
|
+
<tr>
|
|
679
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
680
|
+
<td class="oblique">$.db</td>
|
|
681
|
+
</tr>
|
|
682
|
+
<tr>
|
|
683
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
684
|
+
<td class="oblique">$.hdb</td>
|
|
685
|
+
</tr>
|
|
686
|
+
<tr>
|
|
687
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
688
|
+
<td class="oblique">$.net.http</td>
|
|
689
|
+
</tr>
|
|
690
|
+
<tr>
|
|
691
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
692
|
+
<td class="oblique">$.db</td>
|
|
693
|
+
</tr>
|
|
694
|
+
<tr>
|
|
695
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
696
|
+
<td class="oblique">$.hdb</td>
|
|
697
|
+
</tr>
|
|
698
|
+
<tr>
|
|
699
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
700
|
+
<td class="oblique">$.hdb</td>
|
|
701
|
+
</tr>
|
|
702
|
+
<tr>
|
|
703
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
704
|
+
<td class="oblique">$.db</td>
|
|
705
|
+
</tr>
|
|
706
|
+
<tr>
|
|
707
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
708
|
+
<td class="oblique">$.hdb</td>
|
|
709
|
+
</tr>
|
|
710
|
+
<tr>
|
|
711
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
712
|
+
<td class="oblique">$.util</td>
|
|
713
|
+
</tr>
|
|
714
|
+
<tr>
|
|
715
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
716
|
+
<td class="oblique">$</td>
|
|
717
|
+
</tr>
|
|
718
|
+
<tr>
|
|
719
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
720
|
+
<td class="oblique">$.text.analysis</td>
|
|
721
|
+
</tr>
|
|
722
|
+
<tr>
|
|
723
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
724
|
+
<td class="oblique">$.text.mining</td>
|
|
725
|
+
</tr>
|
|
726
|
+
<tr>
|
|
727
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
728
|
+
<td class="oblique">$.net</td>
|
|
729
|
+
</tr>
|
|
730
|
+
<tr>
|
|
731
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
732
|
+
<td class="oblique">$.db</td>
|
|
733
|
+
</tr>
|
|
734
|
+
<tr>
|
|
735
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
736
|
+
<td class="oblique">$.hdb</td>
|
|
737
|
+
</tr>
|
|
738
|
+
<tr>
|
|
739
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
740
|
+
<td class="oblique">$.security</td>
|
|
741
|
+
</tr>
|
|
742
|
+
<tr>
|
|
743
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
744
|
+
<td class="oblique">$.web</td>
|
|
745
|
+
</tr>
|
|
746
|
+
<tr>
|
|
747
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
748
|
+
<td class="oblique">$.web</td>
|
|
749
|
+
</tr>
|
|
750
|
+
<tr>
|
|
751
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
752
|
+
<td class="oblique">$.web</td>
|
|
753
|
+
</tr>
|
|
754
|
+
<tr>
|
|
755
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
756
|
+
<td class="oblique">$.web</td>
|
|
757
|
+
</tr>
|
|
758
|
+
<tr>
|
|
759
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
760
|
+
<td class="oblique">$.web</td>
|
|
761
|
+
</tr>
|
|
762
|
+
<tr>
|
|
763
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
764
|
+
<td class="oblique">$.util</td>
|
|
765
|
+
</tr>
|
|
766
|
+
</table>
|
|
767
|
+
<h3>Namespaces</h3>
|
|
768
|
+
<ul>
|
|
769
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
770
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
771
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
772
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
773
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
774
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
775
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
776
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
777
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
778
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
779
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
780
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
781
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
782
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
783
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
784
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
785
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
786
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
787
|
+
</ul>
|
|
788
|
+
</nav>
|
|
789
|
+
<br clear="both">
|
|
790
|
+
<footer>
|
|
791
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
792
|
+
&
|
|
793
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
794
|
+
</footer>
|
|
795
|
+
<script>prettyPrint();</script>
|
|
796
|
+
<script src="scripts/linenumber.js"></script>
|
|
797
|
+
|
|
798
|
+
</body>
|
|
799
|
+
|
|
800
|
+
</html>
|