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