@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,1796 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: PreparedStatement</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.PreparedStatement.html">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="main">
|
|
19
|
+
<h1 class="page-title">Class: PreparedStatement</h1>
|
|
20
|
+
<section>
|
|
21
|
+
<header>
|
|
22
|
+
<h2>
|
|
23
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.db.html">.db</a>.</span>
|
|
24
|
+
PreparedStatement
|
|
25
|
+
</h2>
|
|
26
|
+
<div class="class-description">$.db.PreparedStatement represents a prepared SQL statement</div>
|
|
27
|
+
</header>
|
|
28
|
+
<article>
|
|
29
|
+
<div class="container-overview">
|
|
30
|
+
<dt>
|
|
31
|
+
<h4 class="name" id="PreparedStatement"><span class="type-signature"></span>new
|
|
32
|
+
PreparedStatement<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
33
|
+
</dt>
|
|
34
|
+
<dd>
|
|
35
|
+
<div class="description">
|
|
36
|
+
Represents a prepared SQL 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="addBatch"><span class="type-signature"></span>addBatch<span class="signature">()</span><span
|
|
46
|
+
class="type-signature"></span></h4>
|
|
47
|
+
</dt>
|
|
48
|
+
<dd>
|
|
49
|
+
<div class="description">
|
|
50
|
+
Adds last parameter values and iterates to the next batch slot
|
|
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 setBatchSize has not been called successfully or if the object the
|
|
59
|
+
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="close"><span class="type-signature">async </span>close<span
|
|
71
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
72
|
+
</dt>
|
|
73
|
+
<dd>
|
|
74
|
+
<div class="description">
|
|
75
|
+
Closes the statement
|
|
76
|
+
</div>
|
|
77
|
+
<dl class="details">
|
|
78
|
+
</dl>
|
|
79
|
+
<h5>Throws:</h5>
|
|
80
|
+
<ul>
|
|
81
|
+
<li>
|
|
82
|
+
<div class="param-desc">
|
|
83
|
+
Throws an error if the object the method is being called on is not valid.
|
|
84
|
+
</div>
|
|
85
|
+
</li>
|
|
86
|
+
<li>
|
|
87
|
+
<div class="param-desc">
|
|
88
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
89
|
+
</div>
|
|
90
|
+
</li>
|
|
91
|
+
</ul>
|
|
92
|
+
</dd>
|
|
93
|
+
<dt>
|
|
94
|
+
<h4 class="name" id="execute"><span class="type-signature">async </span>execute<span
|
|
95
|
+
class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
|
|
96
|
+
</dt>
|
|
97
|
+
<dd>
|
|
98
|
+
<div class="description">
|
|
99
|
+
Executes a common statement
|
|
100
|
+
</div>
|
|
101
|
+
<dl class="details">
|
|
102
|
+
</dl>
|
|
103
|
+
<h5>Throws:</h5>
|
|
104
|
+
<ul>
|
|
105
|
+
<li>
|
|
106
|
+
<div class="param-desc">
|
|
107
|
+
Throws an error if the object the method is being called on is not valid.
|
|
108
|
+
</div>
|
|
109
|
+
</li>
|
|
110
|
+
<li>
|
|
111
|
+
<div class="param-desc">
|
|
112
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
113
|
+
</div>
|
|
114
|
+
</li>
|
|
115
|
+
</ul>
|
|
116
|
+
<h5>Returns:</h5>
|
|
117
|
+
<div class="param-desc">
|
|
118
|
+
True if the execution yielded a result set (e.g. if a SELECT statement was executed), false if
|
|
119
|
+
not
|
|
120
|
+
</div>
|
|
121
|
+
<dl>
|
|
122
|
+
<dt>
|
|
123
|
+
Type
|
|
124
|
+
</dt>
|
|
125
|
+
<dd>
|
|
126
|
+
<span class="param-type">boolean</span>
|
|
127
|
+
</dd>
|
|
128
|
+
</dl>
|
|
129
|
+
</dd>
|
|
130
|
+
<dt>
|
|
131
|
+
<h4 class="name" id="executeBatch"><span class="type-signature">async </span>executeBatch<span
|
|
132
|
+
class="signature">()</span><span class="type-signature"> → {array}</span></h4>
|
|
133
|
+
</dt>
|
|
134
|
+
<dd>
|
|
135
|
+
<div class="description">
|
|
136
|
+
Executes a batch insertion. Use setBatchSize and addBatch to prepare for batch execution.
|
|
137
|
+
</div>
|
|
138
|
+
<dl class="details">
|
|
139
|
+
</dl>
|
|
140
|
+
<h5>Throws:</h5>
|
|
141
|
+
<ul>
|
|
142
|
+
<li>
|
|
143
|
+
<div class="param-desc">
|
|
144
|
+
Throws an error if the object the method is being called on is not valid.
|
|
145
|
+
</div>
|
|
146
|
+
</li>
|
|
147
|
+
<li>
|
|
148
|
+
<div class="param-desc">
|
|
149
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
150
|
+
</div>
|
|
151
|
+
</li>
|
|
152
|
+
</ul>
|
|
153
|
+
<h5>Returns:</h5>
|
|
154
|
+
<div class="param-desc">
|
|
155
|
+
Array with integers representing the number of updated rows per batch
|
|
156
|
+
</div>
|
|
157
|
+
<dl>
|
|
158
|
+
<dt>
|
|
159
|
+
Type
|
|
160
|
+
</dt>
|
|
161
|
+
<dd>
|
|
162
|
+
<span class="param-type">array</span>
|
|
163
|
+
</dd>
|
|
164
|
+
</dl>
|
|
165
|
+
</dd>
|
|
166
|
+
<dt>
|
|
167
|
+
<h4 class="name" id="executeQuery"><span class="type-signature">async </span>executeQuery<span
|
|
168
|
+
class="signature">()</span><span class="type-signature"> → {<a
|
|
169
|
+
href="$.db.ResultSet.html">$.db.ResultSet</a>}</span></h4>
|
|
170
|
+
</dt>
|
|
171
|
+
<dd>
|
|
172
|
+
<div class="description">
|
|
173
|
+
Executes an SQL statement
|
|
174
|
+
</div>
|
|
175
|
+
<dl class="details">
|
|
176
|
+
</dl>
|
|
177
|
+
<h5>Throws:</h5>
|
|
178
|
+
<ul>
|
|
179
|
+
<li>
|
|
180
|
+
<div class="param-desc">
|
|
181
|
+
Throws an error if the object the method is being called on is not valid.
|
|
182
|
+
</div>
|
|
183
|
+
</li>
|
|
184
|
+
<li>
|
|
185
|
+
<div class="param-desc">
|
|
186
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
187
|
+
</div>
|
|
188
|
+
</li>
|
|
189
|
+
</ul>
|
|
190
|
+
<h5>Returns:</h5>
|
|
191
|
+
<div class="param-desc">
|
|
192
|
+
ResultSet Holds the result of the executed SQL statement
|
|
193
|
+
</div>
|
|
194
|
+
<dl>
|
|
195
|
+
<dt>
|
|
196
|
+
Type
|
|
197
|
+
</dt>
|
|
198
|
+
<dd>
|
|
199
|
+
<span class="param-type"><a href="$.db.ResultSet.html">$.db.ResultSet</a></span>
|
|
200
|
+
</dd>
|
|
201
|
+
</dl>
|
|
202
|
+
</dd>
|
|
203
|
+
<dt>
|
|
204
|
+
<h4 class="name" id="executeUpdate"><span class="type-signature">async </span>executeUpdate<span
|
|
205
|
+
class="signature">()</span><span class="type-signature"> → {integer}</span></h4>
|
|
206
|
+
</dt>
|
|
207
|
+
<dd>
|
|
208
|
+
<div class="description">
|
|
209
|
+
Executes an update statement
|
|
210
|
+
</div>
|
|
211
|
+
<dl class="details">
|
|
212
|
+
</dl>
|
|
213
|
+
<h5>Throws:</h5>
|
|
214
|
+
<ul>
|
|
215
|
+
<li>
|
|
216
|
+
<div class="param-desc">
|
|
217
|
+
Throws an error if the object the method is being called on is not valid.
|
|
218
|
+
</div>
|
|
219
|
+
</li>
|
|
220
|
+
<li>
|
|
221
|
+
<div class="param-desc">
|
|
222
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
223
|
+
</div>
|
|
224
|
+
</li>
|
|
225
|
+
</ul>
|
|
226
|
+
<h5>Returns:</h5>
|
|
227
|
+
<div class="param-desc">
|
|
228
|
+
The number of changed rows resulting from the update statement
|
|
229
|
+
</div>
|
|
230
|
+
<dl>
|
|
231
|
+
<dt>
|
|
232
|
+
Type
|
|
233
|
+
</dt>
|
|
234
|
+
<dd>
|
|
235
|
+
<span class="param-type">integer</span>
|
|
236
|
+
</dd>
|
|
237
|
+
</dl>
|
|
238
|
+
</dd>
|
|
239
|
+
<dt>
|
|
240
|
+
<h4 class="name" id="getMetaData"><span class="type-signature"></span>getMetaData<span
|
|
241
|
+
class="signature">()</span><span class="type-signature"> → {<a
|
|
242
|
+
href="$.db.ResultSetMetaData.html">$.db.ResultSetMetaData</a>}</span></h4>
|
|
243
|
+
</dt>
|
|
244
|
+
<dd>
|
|
245
|
+
<div class="description">
|
|
246
|
+
Returns the metadata of the ResultSet
|
|
247
|
+
</div>
|
|
248
|
+
<dl class="details">
|
|
249
|
+
<dt class="important tag-deprecated">Deprecated:</dt>
|
|
250
|
+
<dd>
|
|
251
|
+
<ul class="dummy">
|
|
252
|
+
<li>Use getMetaData on ResultSet.</li>
|
|
253
|
+
<ul>
|
|
254
|
+
</dd>
|
|
255
|
+
<dt class="tag-see">See:</dt>
|
|
256
|
+
<dd class="tag-see">
|
|
257
|
+
<ul>
|
|
258
|
+
<li><a href="$.db.ResultSet.html#getMetaData">$.db.ResultSet#getMetaData</a></li>
|
|
259
|
+
</ul>
|
|
260
|
+
</dd>
|
|
261
|
+
</dl>
|
|
262
|
+
<h5>Returns:</h5>
|
|
263
|
+
<div class="param-desc">
|
|
264
|
+
ResultSetMetaData object
|
|
265
|
+
</div>
|
|
266
|
+
<dl>
|
|
267
|
+
<dt>
|
|
268
|
+
Type
|
|
269
|
+
</dt>
|
|
270
|
+
<dd>
|
|
271
|
+
<span class="param-type"><a
|
|
272
|
+
href="$.db.ResultSetMetaData.html">$.db.ResultSetMetaData</a></span>
|
|
273
|
+
</dd>
|
|
274
|
+
</dl>
|
|
275
|
+
</dd>
|
|
276
|
+
<dt>
|
|
277
|
+
<h4 class="name" id="getMoreResults"><span class="type-signature"></span>getMoreResults<span
|
|
278
|
+
class="signature">()</span><span class="type-signature"> → {boolean}</span></h4>
|
|
279
|
+
</dt>
|
|
280
|
+
<dd>
|
|
281
|
+
<div class="description">
|
|
282
|
+
Checks if more result sets are available and prepares the next result set for retrieval
|
|
283
|
+
</div>
|
|
284
|
+
<dl class="details">
|
|
285
|
+
</dl>
|
|
286
|
+
<h5>Throws:</h5>
|
|
287
|
+
<ul>
|
|
288
|
+
<li>
|
|
289
|
+
<div class="param-desc">
|
|
290
|
+
Throws an error if the object the method is being called on is not valid.
|
|
291
|
+
</div>
|
|
292
|
+
</li>
|
|
293
|
+
<li>
|
|
294
|
+
<div class="param-desc">
|
|
295
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
296
|
+
</div>
|
|
297
|
+
</li>
|
|
298
|
+
</ul>
|
|
299
|
+
<h5>Returns:</h5>
|
|
300
|
+
<div class="param-desc">
|
|
301
|
+
True if the next result set is available
|
|
302
|
+
</div>
|
|
303
|
+
<dl>
|
|
304
|
+
<dt>
|
|
305
|
+
Type
|
|
306
|
+
</dt>
|
|
307
|
+
<dd>
|
|
308
|
+
<span class="param-type">boolean</span>
|
|
309
|
+
</dd>
|
|
310
|
+
</dl>
|
|
311
|
+
</dd>
|
|
312
|
+
<dt>
|
|
313
|
+
<h4 class="name" id="getParameterMetaData"><span
|
|
314
|
+
class="type-signature"></span>getParameterMetaData<span class="signature">()</span><span
|
|
315
|
+
class="type-signature"> → {<a
|
|
316
|
+
href="$.db.ParameterMetaData.html">$.db.ParameterMetaData</a>}</span></h4>
|
|
317
|
+
</dt>
|
|
318
|
+
<dd>
|
|
319
|
+
<div class="description">
|
|
320
|
+
Returns the metadata of the prepared statement
|
|
321
|
+
</div>
|
|
322
|
+
<dl class="details">
|
|
323
|
+
</dl>
|
|
324
|
+
<h5>Throws:</h5>
|
|
325
|
+
<ul>
|
|
326
|
+
<li>
|
|
327
|
+
<div class="param-desc">
|
|
328
|
+
Throws an error if the object the method is being called on is not valid.
|
|
329
|
+
</div>
|
|
330
|
+
</li>
|
|
331
|
+
<li>
|
|
332
|
+
<div class="param-desc">
|
|
333
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
334
|
+
</div>
|
|
335
|
+
</li>
|
|
336
|
+
</ul>
|
|
337
|
+
<h5>Returns:</h5>
|
|
338
|
+
<div class="param-desc">
|
|
339
|
+
ParameterMetaData object
|
|
340
|
+
</div>
|
|
341
|
+
<dl>
|
|
342
|
+
<dt>
|
|
343
|
+
Type
|
|
344
|
+
</dt>
|
|
345
|
+
<dd>
|
|
346
|
+
<span class="param-type"><a
|
|
347
|
+
href="$.db.ParameterMetaData.html">$.db.ParameterMetaData</a></span>
|
|
348
|
+
</dd>
|
|
349
|
+
</dl>
|
|
350
|
+
</dd>
|
|
351
|
+
<dt>
|
|
352
|
+
<h4 class="name" id="getResultSet"><span class="type-signature"></span>getResultSet<span
|
|
353
|
+
class="signature">()</span><span class="type-signature"> → {<a
|
|
354
|
+
href="$.db.ResultSet.html">$.db.ResultSet</a>}</span></h4>
|
|
355
|
+
</dt>
|
|
356
|
+
<dd>
|
|
357
|
+
<div class="description">
|
|
358
|
+
Returns a result set representing a table output parameter
|
|
359
|
+
</div>
|
|
360
|
+
<dl class="details">
|
|
361
|
+
</dl>
|
|
362
|
+
<h5>Throws:</h5>
|
|
363
|
+
<ul>
|
|
364
|
+
<li>
|
|
365
|
+
<div class="param-desc">
|
|
366
|
+
Throws an error if the object the method is being called on is not valid.
|
|
367
|
+
</div>
|
|
368
|
+
</li>
|
|
369
|
+
<li>
|
|
370
|
+
<div class="param-desc">
|
|
371
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
372
|
+
</div>
|
|
373
|
+
</li>
|
|
374
|
+
</ul>
|
|
375
|
+
<h5>Returns:</h5>
|
|
376
|
+
<div class="param-desc">
|
|
377
|
+
ResultSet of the next output table parameter
|
|
378
|
+
</div>
|
|
379
|
+
<dl>
|
|
380
|
+
<dt>
|
|
381
|
+
Type
|
|
382
|
+
</dt>
|
|
383
|
+
<dd>
|
|
384
|
+
<span class="param-type"><a href="$.db.ResultSet.html">$.db.ResultSet</a></span>
|
|
385
|
+
</dd>
|
|
386
|
+
</dl>
|
|
387
|
+
</dd>
|
|
388
|
+
<dt>
|
|
389
|
+
<h4 class="name" id="getSQLWarning"><span class="type-signature"></span>getSQLWarning<span
|
|
390
|
+
class="signature">()</span><span class="type-signature"> → {Object|null}</span></h4>
|
|
391
|
+
</dt>
|
|
392
|
+
<dd>
|
|
393
|
+
<div class="description">
|
|
394
|
+
Returns the warning of the most recently executed statement.
|
|
395
|
+
</div>
|
|
396
|
+
<dl class="details">
|
|
397
|
+
</dl>
|
|
398
|
+
<h5>Throws:</h5>
|
|
399
|
+
<div class="param-desc">
|
|
400
|
+
Throws an error if the object the method is being called on is not valid.
|
|
401
|
+
</div>
|
|
402
|
+
<h5>Returns:</h5>
|
|
403
|
+
<div class="param-desc">
|
|
404
|
+
The return value has two properties: 'code' and 'message'.
|
|
405
|
+
'null' is returned if the most recent statement didn't issue a warning.
|
|
406
|
+
</div>
|
|
407
|
+
<dl>
|
|
408
|
+
<dt>
|
|
409
|
+
Type
|
|
410
|
+
</dt>
|
|
411
|
+
<dd>
|
|
412
|
+
<span class="param-type">Object</span>
|
|
413
|
+
|
|
|
414
|
+
<span class="param-type">null</span>
|
|
415
|
+
</dd>
|
|
416
|
+
</dl>
|
|
417
|
+
</dd>
|
|
418
|
+
<dt>
|
|
419
|
+
<h4 class="name" id="isClosed"><span class="type-signature"></span>isClosed<span class="signature">()</span><span
|
|
420
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
421
|
+
</dt>
|
|
422
|
+
<dd>
|
|
423
|
+
<div class="description">
|
|
424
|
+
Checks if the statement is closed.
|
|
425
|
+
</div>
|
|
426
|
+
<dl class="details">
|
|
427
|
+
</dl>
|
|
428
|
+
<h5>Throws:</h5>
|
|
429
|
+
<ul>
|
|
430
|
+
<li>
|
|
431
|
+
<div class="param-desc">
|
|
432
|
+
Throws an error if the object the method is being called on is not valid.
|
|
433
|
+
</div>
|
|
434
|
+
</li>
|
|
435
|
+
<li>
|
|
436
|
+
<div class="param-desc">
|
|
437
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
438
|
+
</div>
|
|
439
|
+
</li>
|
|
440
|
+
</ul>
|
|
441
|
+
<h5>Returns:</h5>
|
|
442
|
+
<div class="param-desc">
|
|
443
|
+
Returns true if the statement is already closed, false if not
|
|
444
|
+
</div>
|
|
445
|
+
<dl>
|
|
446
|
+
<dt>
|
|
447
|
+
Type
|
|
448
|
+
</dt>
|
|
449
|
+
<dd>
|
|
450
|
+
<span class="param-type">boolean</span>
|
|
451
|
+
</dd>
|
|
452
|
+
</dl>
|
|
453
|
+
</dd>
|
|
454
|
+
<dt>
|
|
455
|
+
<h4 class="name" id="setBatchSize"><span class="type-signature"></span>setBatchSize<span
|
|
456
|
+
class="signature">(size)</span><span class="type-signature"></span></h4>
|
|
457
|
+
</dt>
|
|
458
|
+
<dd>
|
|
459
|
+
<div class="description">
|
|
460
|
+
Reserves space for batch insertion
|
|
461
|
+
</div>
|
|
462
|
+
<h5>Parameters:</h5>
|
|
463
|
+
<table class="params">
|
|
464
|
+
<thead>
|
|
465
|
+
<tr>
|
|
466
|
+
<th>Name</th>
|
|
467
|
+
<th>Type</th>
|
|
468
|
+
<th class="last">Description</th>
|
|
469
|
+
</tr>
|
|
470
|
+
</thead>
|
|
471
|
+
<tbody>
|
|
472
|
+
<tr>
|
|
473
|
+
<td class="name"><code>size</code></td>
|
|
474
|
+
<td class="type">
|
|
475
|
+
<span class="param-type">integer</span>
|
|
476
|
+
</td>
|
|
477
|
+
<td class="description last">The number (count) of batch insertions that will be performed
|
|
478
|
+
</td>
|
|
479
|
+
</tr>
|
|
480
|
+
</tbody>
|
|
481
|
+
</table>
|
|
482
|
+
<dl class="details">
|
|
483
|
+
</dl>
|
|
484
|
+
<h5>Throws:</h5>
|
|
485
|
+
<ul>
|
|
486
|
+
<li>
|
|
487
|
+
<div class="param-desc">
|
|
488
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
489
|
+
not valid.
|
|
490
|
+
</div>
|
|
491
|
+
</li>
|
|
492
|
+
<li>
|
|
493
|
+
<div class="param-desc">
|
|
494
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
495
|
+
</div>
|
|
496
|
+
</li>
|
|
497
|
+
</ul>
|
|
498
|
+
</dd>
|
|
499
|
+
<dt>
|
|
500
|
+
<h4 class="name" id="setBigInt"><span class="type-signature"></span>setBigInt<span
|
|
501
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
502
|
+
</dt>
|
|
503
|
+
<dd>
|
|
504
|
+
<div class="description">
|
|
505
|
+
Sets an integer parameter used for BIGINT column types
|
|
506
|
+
</div>
|
|
507
|
+
<h5>Parameters:</h5>
|
|
508
|
+
<table class="params">
|
|
509
|
+
<thead>
|
|
510
|
+
<tr>
|
|
511
|
+
<th>Name</th>
|
|
512
|
+
<th>Type</th>
|
|
513
|
+
<th class="last">Description</th>
|
|
514
|
+
</tr>
|
|
515
|
+
</thead>
|
|
516
|
+
<tbody>
|
|
517
|
+
<tr>
|
|
518
|
+
<td class="name"><code>columnIndex</code></td>
|
|
519
|
+
<td class="type">
|
|
520
|
+
<span class="param-type">integer</span>
|
|
521
|
+
</td>
|
|
522
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
523
|
+
from 1</b></td>
|
|
524
|
+
</tr>
|
|
525
|
+
<tr>
|
|
526
|
+
<td class="name"><code>value</code></td>
|
|
527
|
+
<td class="type">
|
|
528
|
+
<span class="param-type">integer</span>
|
|
529
|
+
</td>
|
|
530
|
+
<td class="description last">The number value to be set for this parameter</td>
|
|
531
|
+
</tr>
|
|
532
|
+
</tbody>
|
|
533
|
+
</table>
|
|
534
|
+
<dl class="details">
|
|
535
|
+
</dl>
|
|
536
|
+
<h5>Throws:</h5>
|
|
537
|
+
<ul>
|
|
538
|
+
<li>
|
|
539
|
+
<div class="param-desc">
|
|
540
|
+
Throws an error on invalid parameters.
|
|
541
|
+
</div>
|
|
542
|
+
</li>
|
|
543
|
+
<li>
|
|
544
|
+
<div class="param-desc">
|
|
545
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
546
|
+
</div>
|
|
547
|
+
</li>
|
|
548
|
+
</ul>
|
|
549
|
+
</dd>
|
|
550
|
+
<dt>
|
|
551
|
+
<h4 class="name" id="setBlob"><span class="type-signature"></span>setBlob<span class="signature">(columnIndex, value)</span><span
|
|
552
|
+
class="type-signature"></span></h4>
|
|
553
|
+
</dt>
|
|
554
|
+
<dd>
|
|
555
|
+
<div class="description">
|
|
556
|
+
setBlob is used to specify the values for CHAR, VARCHAR, NCHAR, NVARCHAR, BINARY, and VARBINARY
|
|
557
|
+
column types.
|
|
558
|
+
</div>
|
|
559
|
+
<h5>Parameters:</h5>
|
|
560
|
+
<table class="params">
|
|
561
|
+
<thead>
|
|
562
|
+
<tr>
|
|
563
|
+
<th>Name</th>
|
|
564
|
+
<th>Type</th>
|
|
565
|
+
<th class="last">Description</th>
|
|
566
|
+
</tr>
|
|
567
|
+
</thead>
|
|
568
|
+
<tbody>
|
|
569
|
+
<tr>
|
|
570
|
+
<td class="name"><code>columnIndex</code></td>
|
|
571
|
+
<td class="type">
|
|
572
|
+
<span class="param-type">integer</span>
|
|
573
|
+
</td>
|
|
574
|
+
<td class="description last">The index of the parameter in the prepared statement, <b>starting
|
|
575
|
+
from 1</b></td>
|
|
576
|
+
</tr>
|
|
577
|
+
<tr>
|
|
578
|
+
<td class="name"><code>value</code></td>
|
|
579
|
+
<td class="type">
|
|
580
|
+
<span class="param-type">ArrayBuffer</span>
|
|
581
|
+
</td>
|
|
582
|
+
<td class="description last">The ArrayBuffer object to be set for this parameter, can also
|
|
583
|
+
be an Array of integers or a string.
|
|
584
|
+
</td>
|
|
585
|
+
</tr>
|
|
586
|
+
</tbody>
|
|
587
|
+
</table>
|
|
588
|
+
<dl class="details">
|
|
589
|
+
</dl>
|
|
590
|
+
<h5>Throws:</h5>
|
|
591
|
+
<ul>
|
|
592
|
+
<li>
|
|
593
|
+
<div class="param-desc">
|
|
594
|
+
Throws an error on invalid parameters.
|
|
595
|
+
</div>
|
|
596
|
+
</li>
|
|
597
|
+
<li>
|
|
598
|
+
<div class="param-desc">
|
|
599
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
600
|
+
</div>
|
|
601
|
+
</li>
|
|
602
|
+
</ul>
|
|
603
|
+
</dd>
|
|
604
|
+
<dt>
|
|
605
|
+
<h4 class="name" id="setBString"><span class="type-signature"></span>setBString<span
|
|
606
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
607
|
+
</dt>
|
|
608
|
+
<dd>
|
|
609
|
+
<div class="description">
|
|
610
|
+
Sets an array buffer parameter used for BINARY, VARBINARY column types. <br> Remark: the BINARY
|
|
611
|
+
type is deprecated - its behavior in row store and column store differs in that row store may
|
|
612
|
+
pad with zeros.
|
|
613
|
+
</div>
|
|
614
|
+
<h5>Parameters:</h5>
|
|
615
|
+
<table class="params">
|
|
616
|
+
<thead>
|
|
617
|
+
<tr>
|
|
618
|
+
<th>Name</th>
|
|
619
|
+
<th>Type</th>
|
|
620
|
+
<th class="last">Description</th>
|
|
621
|
+
</tr>
|
|
622
|
+
</thead>
|
|
623
|
+
<tbody>
|
|
624
|
+
<tr>
|
|
625
|
+
<td class="name"><code>columnIndex</code></td>
|
|
626
|
+
<td class="type">
|
|
627
|
+
<span class="param-type">integer</span>
|
|
628
|
+
</td>
|
|
629
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
630
|
+
from 1</b></td>
|
|
631
|
+
</tr>
|
|
632
|
+
<tr>
|
|
633
|
+
<td class="name"><code>value</code></td>
|
|
634
|
+
<td class="type">
|
|
635
|
+
<span class="param-type">ArrayBuffer</span>
|
|
636
|
+
</td>
|
|
637
|
+
<td class="description last">The ArrayBuffer object to be set for this parameter.</td>
|
|
638
|
+
</tr>
|
|
639
|
+
</tbody>
|
|
640
|
+
</table>
|
|
641
|
+
<dl class="details">
|
|
642
|
+
</dl>
|
|
643
|
+
<h5>Throws:</h5>
|
|
644
|
+
<ul>
|
|
645
|
+
<li>
|
|
646
|
+
<div class="param-desc">
|
|
647
|
+
Throws an error on invalid parameters.
|
|
648
|
+
</div>
|
|
649
|
+
</li>
|
|
650
|
+
<li>
|
|
651
|
+
<div class="param-desc">
|
|
652
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
653
|
+
</div>
|
|
654
|
+
</li>
|
|
655
|
+
</ul>
|
|
656
|
+
</dd>
|
|
657
|
+
<dt>
|
|
658
|
+
<h4 class="name" id="setClob"><span class="type-signature"></span>setClob<span class="signature">(columnIndex, value)</span><span
|
|
659
|
+
class="type-signature"></span></h4>
|
|
660
|
+
</dt>
|
|
661
|
+
<dd>
|
|
662
|
+
<div class="description">
|
|
663
|
+
setClob is used to specify the values for CLOB column types.
|
|
664
|
+
</div>
|
|
665
|
+
<h5>Parameters:</h5>
|
|
666
|
+
<table class="params">
|
|
667
|
+
<thead>
|
|
668
|
+
<tr>
|
|
669
|
+
<th>Name</th>
|
|
670
|
+
<th>Type</th>
|
|
671
|
+
<th class="last">Description</th>
|
|
672
|
+
</tr>
|
|
673
|
+
</thead>
|
|
674
|
+
<tbody>
|
|
675
|
+
<tr>
|
|
676
|
+
<td class="name"><code>columnIndex</code></td>
|
|
677
|
+
<td class="type">
|
|
678
|
+
<span class="param-type">integer</span>
|
|
679
|
+
</td>
|
|
680
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
681
|
+
from 1</b></td>
|
|
682
|
+
</tr>
|
|
683
|
+
<tr>
|
|
684
|
+
<td class="name"><code>value</code></td>
|
|
685
|
+
<td class="type">
|
|
686
|
+
<span class="param-type">string</span>
|
|
687
|
+
</td>
|
|
688
|
+
<td class="description last">The string value to be set for this parameter</td>
|
|
689
|
+
</tr>
|
|
690
|
+
</tbody>
|
|
691
|
+
</table>
|
|
692
|
+
<dl class="details">
|
|
693
|
+
</dl>
|
|
694
|
+
<h5>Throws:</h5>
|
|
695
|
+
<ul>
|
|
696
|
+
<li>
|
|
697
|
+
<div class="param-desc">
|
|
698
|
+
Throws an error on invalid parameters.
|
|
699
|
+
</div>
|
|
700
|
+
</li>
|
|
701
|
+
<li>
|
|
702
|
+
<div class="param-desc">
|
|
703
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
704
|
+
</div>
|
|
705
|
+
</li>
|
|
706
|
+
</ul>
|
|
707
|
+
</dd>
|
|
708
|
+
<dt>
|
|
709
|
+
<h4 class="name" id="setDate"><span class="type-signature"></span>setDate<span class="signature">(columnIndex, value, <span
|
|
710
|
+
class="optional">format</span>)</span><span class="type-signature"></span></h4>
|
|
711
|
+
</dt>
|
|
712
|
+
<dd>
|
|
713
|
+
<div class="description">
|
|
714
|
+
Sets a Date parameter for DATE columns, but works with TIME and TIMESTAMP. It is not possible to
|
|
715
|
+
set the time with setDate; you can only set the date.
|
|
716
|
+
</div>
|
|
717
|
+
<h5>Parameters:</h5>
|
|
718
|
+
<table class="params">
|
|
719
|
+
<thead>
|
|
720
|
+
<tr>
|
|
721
|
+
<th>Name</th>
|
|
722
|
+
<th>Type</th>
|
|
723
|
+
<th>Argument</th>
|
|
724
|
+
<th>Default</th>
|
|
725
|
+
<th class="last">Description</th>
|
|
726
|
+
</tr>
|
|
727
|
+
</thead>
|
|
728
|
+
<tbody>
|
|
729
|
+
<tr>
|
|
730
|
+
<td class="name"><code>columnIndex</code></td>
|
|
731
|
+
<td class="type">
|
|
732
|
+
<span class="param-type">integer</span>
|
|
733
|
+
</td>
|
|
734
|
+
<td class="attributes">
|
|
735
|
+
</td>
|
|
736
|
+
<td class="default">
|
|
737
|
+
</td>
|
|
738
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
739
|
+
from 1</b></td>
|
|
740
|
+
</tr>
|
|
741
|
+
<tr>
|
|
742
|
+
<td class="name"><code>value</code></td>
|
|
743
|
+
<td class="type">
|
|
744
|
+
<span class="param-type">Date</span>
|
|
745
|
+
|
|
|
746
|
+
<span class="param-type">string</span>
|
|
747
|
+
</td>
|
|
748
|
+
<td class="attributes">
|
|
749
|
+
</td>
|
|
750
|
+
<td class="default">
|
|
751
|
+
</td>
|
|
752
|
+
<td class="description last">The date to be set for this parameter <br/>
|
|
753
|
+
The parameter can be either a Date object, a string in default ptime format
|
|
754
|
+
(YYYY-MM-DD), or a string in the optionally specified format.<br/>
|
|
755
|
+
For example: 'yyyymmdd' or 'yyyy-mm-dd' or 'yyyy/mm/dd'
|
|
756
|
+
<ul>
|
|
757
|
+
<li>Y,YY,YYY,YYYY-year</li>
|
|
758
|
+
<li>D-day</li>
|
|
759
|
+
<li>J-Julian day</li>
|
|
760
|
+
<li>MONTH-by name,MON-abbr.</li>
|
|
761
|
+
<li>M-month</li>
|
|
762
|
+
<li>Q-quarter</li>
|
|
763
|
+
<li>RM-Roman numeral month</li>
|
|
764
|
+
<li>W-week of month</li>
|
|
765
|
+
<li>WW-week of year.</li>
|
|
766
|
+
</ul>
|
|
767
|
+
Note that when you construct a new Date JavaScript object, the month number starts from
|
|
768
|
+
<b>0</b> (not 1).<br>
|
|
769
|
+
For example the following statement represents <em>1st of Jan, 2010</em>:<br>
|
|
770
|
+
<i>new Date(2010,0,1);</i></td>
|
|
771
|
+
</tr>
|
|
772
|
+
<tr>
|
|
773
|
+
<td class="name"><code>format</code></td>
|
|
774
|
+
<td class="type">
|
|
775
|
+
<span class="param-type">string</span>
|
|
776
|
+
</td>
|
|
777
|
+
<td class="attributes">
|
|
778
|
+
<optional><br>
|
|
779
|
+
</td>
|
|
780
|
+
<td class="default">
|
|
781
|
+
""
|
|
782
|
+
</td>
|
|
783
|
+
<td class="description last">One of the following formats: <br/></td>
|
|
784
|
+
</tr>
|
|
785
|
+
</tbody>
|
|
786
|
+
</table>
|
|
787
|
+
<dl class="details">
|
|
788
|
+
</dl>
|
|
789
|
+
<h5>Throws:</h5>
|
|
790
|
+
<ul>
|
|
791
|
+
<li>
|
|
792
|
+
<div class="param-desc">
|
|
793
|
+
Throws an error on invalid parameters.
|
|
794
|
+
</div>
|
|
795
|
+
</li>
|
|
796
|
+
<li>
|
|
797
|
+
<div class="param-desc">
|
|
798
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
799
|
+
</div>
|
|
800
|
+
</li>
|
|
801
|
+
</ul>
|
|
802
|
+
</dd>
|
|
803
|
+
<dt>
|
|
804
|
+
<h4 class="name" id="setDecimal"><span class="type-signature"></span>setDecimal<span
|
|
805
|
+
class="signature">(index, value)</span><span class="type-signature"></span></h4>
|
|
806
|
+
</dt>
|
|
807
|
+
<dd>
|
|
808
|
+
<div class="description">
|
|
809
|
+
setDecimal sets a decimal parameter used for DECIMAL column types.
|
|
810
|
+
</div>
|
|
811
|
+
<h5>Parameters:</h5>
|
|
812
|
+
<table class="params">
|
|
813
|
+
<thead>
|
|
814
|
+
<tr>
|
|
815
|
+
<th>Name</th>
|
|
816
|
+
<th>Type</th>
|
|
817
|
+
<th class="last">Description</th>
|
|
818
|
+
</tr>
|
|
819
|
+
</thead>
|
|
820
|
+
<tbody>
|
|
821
|
+
<tr>
|
|
822
|
+
<td class="name"><code>index</code></td>
|
|
823
|
+
<td class="type">
|
|
824
|
+
<span class="param-type">integer</span>
|
|
825
|
+
</td>
|
|
826
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
827
|
+
from 1</b></td>
|
|
828
|
+
</tr>
|
|
829
|
+
<tr>
|
|
830
|
+
<td class="name"><code>value</code></td>
|
|
831
|
+
<td class="type">
|
|
832
|
+
<span class="param-type">number</span>
|
|
833
|
+
</td>
|
|
834
|
+
<td class="description last">The number value to be set for this parameter</td>
|
|
835
|
+
</tr>
|
|
836
|
+
</tbody>
|
|
837
|
+
</table>
|
|
838
|
+
<dl class="details">
|
|
839
|
+
</dl>
|
|
840
|
+
<h5>Throws:</h5>
|
|
841
|
+
<ul>
|
|
842
|
+
<li>
|
|
843
|
+
<div class="param-desc">
|
|
844
|
+
Throws an error on invalid parameters.
|
|
845
|
+
</div>
|
|
846
|
+
</li>
|
|
847
|
+
<li>
|
|
848
|
+
<div class="param-desc">
|
|
849
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
850
|
+
</div>
|
|
851
|
+
</li>
|
|
852
|
+
</ul>
|
|
853
|
+
</dd>
|
|
854
|
+
<dt>
|
|
855
|
+
<h4 class="name" id="setDouble"><span class="type-signature"></span>setDouble<span
|
|
856
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
857
|
+
</dt>
|
|
858
|
+
<dd>
|
|
859
|
+
<div class="description">
|
|
860
|
+
setDouble sets a double parameter used for FLOAT and DOUBLE column types.
|
|
861
|
+
</div>
|
|
862
|
+
<h5>Parameters:</h5>
|
|
863
|
+
<table class="params">
|
|
864
|
+
<thead>
|
|
865
|
+
<tr>
|
|
866
|
+
<th>Name</th>
|
|
867
|
+
<th>Type</th>
|
|
868
|
+
<th class="last">Description</th>
|
|
869
|
+
</tr>
|
|
870
|
+
</thead>
|
|
871
|
+
<tbody>
|
|
872
|
+
<tr>
|
|
873
|
+
<td class="name"><code>columnIndex</code></td>
|
|
874
|
+
<td class="type">
|
|
875
|
+
<span class="param-type">integer</span>
|
|
876
|
+
</td>
|
|
877
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
878
|
+
from 1</b></td>
|
|
879
|
+
</tr>
|
|
880
|
+
<tr>
|
|
881
|
+
<td class="name"><code>value</code></td>
|
|
882
|
+
<td class="type">
|
|
883
|
+
<span class="param-type">number</span>
|
|
884
|
+
</td>
|
|
885
|
+
<td class="description last">The number value to be set for this parameter</td>
|
|
886
|
+
</tr>
|
|
887
|
+
</tbody>
|
|
888
|
+
</table>
|
|
889
|
+
<dl class="details">
|
|
890
|
+
</dl>
|
|
891
|
+
<h5>Throws:</h5>
|
|
892
|
+
<ul>
|
|
893
|
+
<li>
|
|
894
|
+
<div class="param-desc">
|
|
895
|
+
Throws an error on invalid parameters.
|
|
896
|
+
</div>
|
|
897
|
+
</li>
|
|
898
|
+
<li>
|
|
899
|
+
<div class="param-desc">
|
|
900
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
901
|
+
</div>
|
|
902
|
+
</li>
|
|
903
|
+
</ul>
|
|
904
|
+
</dd>
|
|
905
|
+
<dt>
|
|
906
|
+
<h4 class="name" id="setFloat"><span class="type-signature"></span>setFloat<span class="signature">(columnIndex, value)</span><span
|
|
907
|
+
class="type-signature"></span></h4>
|
|
908
|
+
</dt>
|
|
909
|
+
<dd>
|
|
910
|
+
<div class="description">
|
|
911
|
+
setFloat sets a float parameter used for FLOAT column types.
|
|
912
|
+
</div>
|
|
913
|
+
<h5>Parameters:</h5>
|
|
914
|
+
<table class="params">
|
|
915
|
+
<thead>
|
|
916
|
+
<tr>
|
|
917
|
+
<th>Name</th>
|
|
918
|
+
<th>Type</th>
|
|
919
|
+
<th class="last">Description</th>
|
|
920
|
+
</tr>
|
|
921
|
+
</thead>
|
|
922
|
+
<tbody>
|
|
923
|
+
<tr>
|
|
924
|
+
<td class="name"><code>columnIndex</code></td>
|
|
925
|
+
<td class="type">
|
|
926
|
+
<span class="param-type">integer</span>
|
|
927
|
+
</td>
|
|
928
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
929
|
+
from 1</b></td>
|
|
930
|
+
</tr>
|
|
931
|
+
<tr>
|
|
932
|
+
<td class="name"><code>value</code></td>
|
|
933
|
+
<td class="type">
|
|
934
|
+
<span class="param-type">number</span>
|
|
935
|
+
</td>
|
|
936
|
+
<td class="description last">The number value to be set for this parameter</td>
|
|
937
|
+
</tr>
|
|
938
|
+
</tbody>
|
|
939
|
+
</table>
|
|
940
|
+
<dl class="details">
|
|
941
|
+
</dl>
|
|
942
|
+
<h5>Throws:</h5>
|
|
943
|
+
<ul>
|
|
944
|
+
<li>
|
|
945
|
+
<div class="param-desc">
|
|
946
|
+
Throws an error on invalid parameters.
|
|
947
|
+
</div>
|
|
948
|
+
</li>
|
|
949
|
+
<li>
|
|
950
|
+
<div class="param-desc">
|
|
951
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
952
|
+
</div>
|
|
953
|
+
</li>
|
|
954
|
+
</ul>
|
|
955
|
+
</dd>
|
|
956
|
+
<dt>
|
|
957
|
+
<h4 class="name" id="setInteger"><span class="type-signature"></span>setInteger<span
|
|
958
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
959
|
+
</dt>
|
|
960
|
+
<dd>
|
|
961
|
+
<div class="description">
|
|
962
|
+
Sets an integer parameter used for TINYINT, SMALLINT, INT column types
|
|
963
|
+
</div>
|
|
964
|
+
<h5>Parameters:</h5>
|
|
965
|
+
<table class="params">
|
|
966
|
+
<thead>
|
|
967
|
+
<tr>
|
|
968
|
+
<th>Name</th>
|
|
969
|
+
<th>Type</th>
|
|
970
|
+
<th class="last">Description</th>
|
|
971
|
+
</tr>
|
|
972
|
+
</thead>
|
|
973
|
+
<tbody>
|
|
974
|
+
<tr>
|
|
975
|
+
<td class="name"><code>columnIndex</code></td>
|
|
976
|
+
<td class="type">
|
|
977
|
+
<span class="param-type">integer</span>
|
|
978
|
+
</td>
|
|
979
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
980
|
+
from 1</b></td>
|
|
981
|
+
</tr>
|
|
982
|
+
<tr>
|
|
983
|
+
<td class="name"><code>value</code></td>
|
|
984
|
+
<td class="type">
|
|
985
|
+
<span class="param-type">integer</span>
|
|
986
|
+
</td>
|
|
987
|
+
<td class="description last">The integer value to be set for this parameter</td>
|
|
988
|
+
</tr>
|
|
989
|
+
</tbody>
|
|
990
|
+
</table>
|
|
991
|
+
<dl class="details">
|
|
992
|
+
</dl>
|
|
993
|
+
<h5>Throws:</h5>
|
|
994
|
+
<ul>
|
|
995
|
+
<li>
|
|
996
|
+
<div class="param-desc">
|
|
997
|
+
Throws an error on invalid parameters.
|
|
998
|
+
</div>
|
|
999
|
+
</li>
|
|
1000
|
+
<li>
|
|
1001
|
+
<div class="param-desc">
|
|
1002
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1003
|
+
</div>
|
|
1004
|
+
</li>
|
|
1005
|
+
</ul>
|
|
1006
|
+
</dd>
|
|
1007
|
+
<dt>
|
|
1008
|
+
<h4 class="name" id="setNClob"><span class="type-signature"></span>setNClob<span class="signature">(columnIndex, value)</span><span
|
|
1009
|
+
class="type-signature"></span></h4>
|
|
1010
|
+
</dt>
|
|
1011
|
+
<dd>
|
|
1012
|
+
<div class="description">
|
|
1013
|
+
setNClob is used to specify the values for NCLOB column types.
|
|
1014
|
+
</div>
|
|
1015
|
+
<h5>Parameters:</h5>
|
|
1016
|
+
<table class="params">
|
|
1017
|
+
<thead>
|
|
1018
|
+
<tr>
|
|
1019
|
+
<th>Name</th>
|
|
1020
|
+
<th>Type</th>
|
|
1021
|
+
<th class="last">Description</th>
|
|
1022
|
+
</tr>
|
|
1023
|
+
</thead>
|
|
1024
|
+
<tbody>
|
|
1025
|
+
<tr>
|
|
1026
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1027
|
+
<td class="type">
|
|
1028
|
+
<span class="param-type">integer</span>
|
|
1029
|
+
</td>
|
|
1030
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1031
|
+
from 1</b></td>
|
|
1032
|
+
</tr>
|
|
1033
|
+
<tr>
|
|
1034
|
+
<td class="name"><code>value</code></td>
|
|
1035
|
+
<td class="type">
|
|
1036
|
+
<span class="param-type">string</span>
|
|
1037
|
+
</td>
|
|
1038
|
+
<td class="description last">The string value to be set for this parameter</td>
|
|
1039
|
+
</tr>
|
|
1040
|
+
</tbody>
|
|
1041
|
+
</table>
|
|
1042
|
+
<dl class="details">
|
|
1043
|
+
</dl>
|
|
1044
|
+
<h5>Throws:</h5>
|
|
1045
|
+
<ul>
|
|
1046
|
+
<li>
|
|
1047
|
+
<div class="param-desc">
|
|
1048
|
+
Throws an error on invalid parameters.
|
|
1049
|
+
</div>
|
|
1050
|
+
</li>
|
|
1051
|
+
<li>
|
|
1052
|
+
<div class="param-desc">
|
|
1053
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1054
|
+
</div>
|
|
1055
|
+
</li>
|
|
1056
|
+
</ul>
|
|
1057
|
+
</dd>
|
|
1058
|
+
<dt>
|
|
1059
|
+
<h4 class="name" id="setNString"><span class="type-signature"></span>setNString<span
|
|
1060
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
1061
|
+
</dt>
|
|
1062
|
+
<dd>
|
|
1063
|
+
<div class="description">
|
|
1064
|
+
Sets a string parameter used for NCHAR, NVARCHAR parameter types, which should be used for
|
|
1065
|
+
strings containing Unicode characters. <br>
|
|
1066
|
+
This function converts the given Unicode string into a storable format. Make sure you use
|
|
1067
|
+
getNString to read the data.
|
|
1068
|
+
If you use getString on a column you wrote with setNString, an exception is thrown if the string
|
|
1069
|
+
contains Unicode characters larger than 0xFFFF.
|
|
1070
|
+
</div>
|
|
1071
|
+
<h5>Parameters:</h5>
|
|
1072
|
+
<table class="params">
|
|
1073
|
+
<thead>
|
|
1074
|
+
<tr>
|
|
1075
|
+
<th>Name</th>
|
|
1076
|
+
<th>Type</th>
|
|
1077
|
+
<th class="last">Description</th>
|
|
1078
|
+
</tr>
|
|
1079
|
+
</thead>
|
|
1080
|
+
<tbody>
|
|
1081
|
+
<tr>
|
|
1082
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1083
|
+
<td class="type">
|
|
1084
|
+
<span class="param-type">integer</span>
|
|
1085
|
+
</td>
|
|
1086
|
+
<td class="description last">The index of the parameter <b>starting from 1</b></td>
|
|
1087
|
+
</tr>
|
|
1088
|
+
<tr>
|
|
1089
|
+
<td class="name"><code>value</code></td>
|
|
1090
|
+
<td class="type">
|
|
1091
|
+
<span class="param-type">string</span>
|
|
1092
|
+
</td>
|
|
1093
|
+
<td class="description last">The string value to be set for this parameter</td>
|
|
1094
|
+
</tr>
|
|
1095
|
+
</tbody>
|
|
1096
|
+
</table>
|
|
1097
|
+
<dl class="details">
|
|
1098
|
+
</dl>
|
|
1099
|
+
<h5>Throws:</h5>
|
|
1100
|
+
<ul>
|
|
1101
|
+
<li>
|
|
1102
|
+
<div class="param-desc">
|
|
1103
|
+
Throws an error on invalid parameters.
|
|
1104
|
+
</div>
|
|
1105
|
+
</li>
|
|
1106
|
+
<li>
|
|
1107
|
+
<div class="param-desc">
|
|
1108
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1109
|
+
</div>
|
|
1110
|
+
</li>
|
|
1111
|
+
</ul>
|
|
1112
|
+
</dd>
|
|
1113
|
+
<dt>
|
|
1114
|
+
<h4 class="name" id="setNull"><span class="type-signature"></span>setNull<span class="signature">(columnIndex)</span><span
|
|
1115
|
+
class="type-signature"></span></h4>
|
|
1116
|
+
</dt>
|
|
1117
|
+
<dd>
|
|
1118
|
+
<div class="description">
|
|
1119
|
+
setNull is used to set a Null parameter used for all column types.
|
|
1120
|
+
</div>
|
|
1121
|
+
<h5>Parameters:</h5>
|
|
1122
|
+
<table class="params">
|
|
1123
|
+
<thead>
|
|
1124
|
+
<tr>
|
|
1125
|
+
<th>Name</th>
|
|
1126
|
+
<th>Type</th>
|
|
1127
|
+
<th class="last">Description</th>
|
|
1128
|
+
</tr>
|
|
1129
|
+
</thead>
|
|
1130
|
+
<tbody>
|
|
1131
|
+
<tr>
|
|
1132
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1133
|
+
<td class="type">
|
|
1134
|
+
<span class="param-type">integer</span>
|
|
1135
|
+
</td>
|
|
1136
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1137
|
+
from 1</b></td>
|
|
1138
|
+
</tr>
|
|
1139
|
+
</tbody>
|
|
1140
|
+
</table>
|
|
1141
|
+
<dl class="details">
|
|
1142
|
+
</dl>
|
|
1143
|
+
<h5>Throws:</h5>
|
|
1144
|
+
<ul>
|
|
1145
|
+
<li>
|
|
1146
|
+
<div class="param-desc">
|
|
1147
|
+
Throws an error on invalid parameters.
|
|
1148
|
+
</div>
|
|
1149
|
+
</li>
|
|
1150
|
+
<li>
|
|
1151
|
+
<div class="param-desc">
|
|
1152
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1153
|
+
</div>
|
|
1154
|
+
</li>
|
|
1155
|
+
</ul>
|
|
1156
|
+
</dd>
|
|
1157
|
+
<dt>
|
|
1158
|
+
<h4 class="name" id="setReal"><span class="type-signature"></span>setReal<span class="signature">(columnIndex, value)</span><span
|
|
1159
|
+
class="type-signature"></span></h4>
|
|
1160
|
+
</dt>
|
|
1161
|
+
<dd>
|
|
1162
|
+
<div class="description">
|
|
1163
|
+
setReal sets a real parameter used for REAL column types.
|
|
1164
|
+
</div>
|
|
1165
|
+
<h5>Parameters:</h5>
|
|
1166
|
+
<table class="params">
|
|
1167
|
+
<thead>
|
|
1168
|
+
<tr>
|
|
1169
|
+
<th>Name</th>
|
|
1170
|
+
<th>Type</th>
|
|
1171
|
+
<th class="last">Description</th>
|
|
1172
|
+
</tr>
|
|
1173
|
+
</thead>
|
|
1174
|
+
<tbody>
|
|
1175
|
+
<tr>
|
|
1176
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1177
|
+
<td class="type">
|
|
1178
|
+
<span class="param-type">integer</span>
|
|
1179
|
+
</td>
|
|
1180
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1181
|
+
from 1</b></td>
|
|
1182
|
+
</tr>
|
|
1183
|
+
<tr>
|
|
1184
|
+
<td class="name"><code>value</code></td>
|
|
1185
|
+
<td class="type">
|
|
1186
|
+
<span class="param-type">number</span>
|
|
1187
|
+
</td>
|
|
1188
|
+
<td class="description last">The number value to be set for this parameter</td>
|
|
1189
|
+
</tr>
|
|
1190
|
+
</tbody>
|
|
1191
|
+
</table>
|
|
1192
|
+
<dl class="details">
|
|
1193
|
+
</dl>
|
|
1194
|
+
<h5>Throws:</h5>
|
|
1195
|
+
<ul>
|
|
1196
|
+
<li>
|
|
1197
|
+
<div class="param-desc">
|
|
1198
|
+
Throws an error on invalid parameters.
|
|
1199
|
+
</div>
|
|
1200
|
+
</li>
|
|
1201
|
+
<li>
|
|
1202
|
+
<div class="param-desc">
|
|
1203
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1204
|
+
</div>
|
|
1205
|
+
</li>
|
|
1206
|
+
</ul>
|
|
1207
|
+
</dd>
|
|
1208
|
+
<dt>
|
|
1209
|
+
<h4 class="name" id="setSmallInt"><span class="type-signature"></span>setSmallInt<span
|
|
1210
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
1211
|
+
</dt>
|
|
1212
|
+
<dd>
|
|
1213
|
+
<div class="description">
|
|
1214
|
+
Sets an integer parameter used for SMALLINT column types
|
|
1215
|
+
</div>
|
|
1216
|
+
<h5>Parameters:</h5>
|
|
1217
|
+
<table class="params">
|
|
1218
|
+
<thead>
|
|
1219
|
+
<tr>
|
|
1220
|
+
<th>Name</th>
|
|
1221
|
+
<th>Type</th>
|
|
1222
|
+
<th class="last">Description</th>
|
|
1223
|
+
</tr>
|
|
1224
|
+
</thead>
|
|
1225
|
+
<tbody>
|
|
1226
|
+
<tr>
|
|
1227
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1228
|
+
<td class="type">
|
|
1229
|
+
<span class="param-type">integer</span>
|
|
1230
|
+
</td>
|
|
1231
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1232
|
+
from 1</b></td>
|
|
1233
|
+
</tr>
|
|
1234
|
+
<tr>
|
|
1235
|
+
<td class="name"><code>value</code></td>
|
|
1236
|
+
<td class="type">
|
|
1237
|
+
<span class="param-type">integer</span>
|
|
1238
|
+
</td>
|
|
1239
|
+
<td class="description last">The integer value to be set for this parameter</td>
|
|
1240
|
+
</tr>
|
|
1241
|
+
</tbody>
|
|
1242
|
+
</table>
|
|
1243
|
+
<dl class="details">
|
|
1244
|
+
</dl>
|
|
1245
|
+
<h5>Throws:</h5>
|
|
1246
|
+
<ul>
|
|
1247
|
+
<li>
|
|
1248
|
+
<div class="param-desc">
|
|
1249
|
+
Throws an error on invalid parameters.
|
|
1250
|
+
</div>
|
|
1251
|
+
</li>
|
|
1252
|
+
<li>
|
|
1253
|
+
<div class="param-desc">
|
|
1254
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1255
|
+
</div>
|
|
1256
|
+
</li>
|
|
1257
|
+
</ul>
|
|
1258
|
+
</dd>
|
|
1259
|
+
<dt>
|
|
1260
|
+
<h4 class="name" id="setString"><span class="type-signature"></span>setString<span
|
|
1261
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
1262
|
+
</dt>
|
|
1263
|
+
<dd>
|
|
1264
|
+
<div class="description">
|
|
1265
|
+
Sets a string parameter used for CHAR, VARCHAR column types; ASCII only, not suitable for
|
|
1266
|
+
strings containing Unicode characters <br>
|
|
1267
|
+
This function can be used to store strings containing ASCII and a subset of Unicode (namely BMP;
|
|
1268
|
+
the first 0xFFFF characters). <br>
|
|
1269
|
+
This function does not convert data; to improve performance, it stores data directly in the
|
|
1270
|
+
database. <br>
|
|
1271
|
+
Note that special characters (in Unicode SMP or SIP) can cause the read operation to fail.
|
|
1272
|
+
For more information see <a href="http://en.wikipedia.org/wiki/Plane_%2528Unicode%2529">Plane
|
|
1273
|
+
(Unicode)</a>. <br>
|
|
1274
|
+
If also need special Unicode characters or if you are not sure what this means it is safer to
|
|
1275
|
+
use setNString.
|
|
1276
|
+
</div>
|
|
1277
|
+
<h5>Parameters:</h5>
|
|
1278
|
+
<table class="params">
|
|
1279
|
+
<thead>
|
|
1280
|
+
<tr>
|
|
1281
|
+
<th>Name</th>
|
|
1282
|
+
<th>Type</th>
|
|
1283
|
+
<th class="last">Description</th>
|
|
1284
|
+
</tr>
|
|
1285
|
+
</thead>
|
|
1286
|
+
<tbody>
|
|
1287
|
+
<tr>
|
|
1288
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1289
|
+
<td class="type">
|
|
1290
|
+
<span class="param-type">integer</span>
|
|
1291
|
+
</td>
|
|
1292
|
+
<td class="description last">The index of the parameter in the statement <b>starting from
|
|
1293
|
+
1</b></td>
|
|
1294
|
+
</tr>
|
|
1295
|
+
<tr>
|
|
1296
|
+
<td class="name"><code>value</code></td>
|
|
1297
|
+
<td class="type">
|
|
1298
|
+
<span class="param-type">string</span>
|
|
1299
|
+
</td>
|
|
1300
|
+
<td class="description last">The string value to be set for this parameter</td>
|
|
1301
|
+
</tr>
|
|
1302
|
+
</tbody>
|
|
1303
|
+
</table>
|
|
1304
|
+
<dl class="details">
|
|
1305
|
+
</dl>
|
|
1306
|
+
<h5>Throws:</h5>
|
|
1307
|
+
<ul>
|
|
1308
|
+
<li>
|
|
1309
|
+
<div class="param-desc">
|
|
1310
|
+
Throws an error on invalid parameters.
|
|
1311
|
+
</div>
|
|
1312
|
+
</li>
|
|
1313
|
+
<li>
|
|
1314
|
+
<div class="param-desc">
|
|
1315
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1316
|
+
</div>
|
|
1317
|
+
</li>
|
|
1318
|
+
</ul>
|
|
1319
|
+
</dd>
|
|
1320
|
+
<dt>
|
|
1321
|
+
<h4 class="name" id="setText"><span class="type-signature"></span>setText<span class="signature">(columnIndex, value)</span><span
|
|
1322
|
+
class="type-signature"></span></h4>
|
|
1323
|
+
</dt>
|
|
1324
|
+
<dd>
|
|
1325
|
+
<div class="description">
|
|
1326
|
+
setText is used to specify the values for TEXT column types.
|
|
1327
|
+
</div>
|
|
1328
|
+
<h5>Parameters:</h5>
|
|
1329
|
+
<table class="params">
|
|
1330
|
+
<thead>
|
|
1331
|
+
<tr>
|
|
1332
|
+
<th>Name</th>
|
|
1333
|
+
<th>Type</th>
|
|
1334
|
+
<th class="last">Description</th>
|
|
1335
|
+
</tr>
|
|
1336
|
+
</thead>
|
|
1337
|
+
<tbody>
|
|
1338
|
+
<tr>
|
|
1339
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1340
|
+
<td class="type">
|
|
1341
|
+
<span class="param-type">integer</span>
|
|
1342
|
+
</td>
|
|
1343
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1344
|
+
from 1</b></td>
|
|
1345
|
+
</tr>
|
|
1346
|
+
<tr>
|
|
1347
|
+
<td class="name"><code>value</code></td>
|
|
1348
|
+
<td class="type">
|
|
1349
|
+
<span class="param-type">string</span>
|
|
1350
|
+
</td>
|
|
1351
|
+
<td class="description last">The string value to be set for this parameter</td>
|
|
1352
|
+
</tr>
|
|
1353
|
+
</tbody>
|
|
1354
|
+
</table>
|
|
1355
|
+
<dl class="details">
|
|
1356
|
+
</dl>
|
|
1357
|
+
<h5>Throws:</h5>
|
|
1358
|
+
<ul>
|
|
1359
|
+
<li>
|
|
1360
|
+
<div class="param-desc">
|
|
1361
|
+
Throws an error on invalid parameters.
|
|
1362
|
+
</div>
|
|
1363
|
+
</li>
|
|
1364
|
+
<li>
|
|
1365
|
+
<div class="param-desc">
|
|
1366
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1367
|
+
</div>
|
|
1368
|
+
</li>
|
|
1369
|
+
</ul>
|
|
1370
|
+
</dd>
|
|
1371
|
+
<dt>
|
|
1372
|
+
<h4 class="name" id="setTime"><span class="type-signature"></span>setTime<span class="signature">(columnIndex, value, <span
|
|
1373
|
+
class="optional">format</span>)</span><span class="type-signature"></span></h4>
|
|
1374
|
+
</dt>
|
|
1375
|
+
<dd>
|
|
1376
|
+
<div class="description">
|
|
1377
|
+
Sets a Time parameter used for TIME column types (hour, min, sec). You cannot set milliseconds
|
|
1378
|
+
(mls).
|
|
1379
|
+
</div>
|
|
1380
|
+
<h5>Parameters:</h5>
|
|
1381
|
+
<table class="params">
|
|
1382
|
+
<thead>
|
|
1383
|
+
<tr>
|
|
1384
|
+
<th>Name</th>
|
|
1385
|
+
<th>Type</th>
|
|
1386
|
+
<th>Argument</th>
|
|
1387
|
+
<th>Default</th>
|
|
1388
|
+
<th class="last">Description</th>
|
|
1389
|
+
</tr>
|
|
1390
|
+
</thead>
|
|
1391
|
+
<tbody>
|
|
1392
|
+
<tr>
|
|
1393
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1394
|
+
<td class="type">
|
|
1395
|
+
<span class="param-type">integer</span>
|
|
1396
|
+
</td>
|
|
1397
|
+
<td class="attributes">
|
|
1398
|
+
</td>
|
|
1399
|
+
<td class="default">
|
|
1400
|
+
</td>
|
|
1401
|
+
<td class="description last">The index of the parameter in the prepared statement, <b>starting
|
|
1402
|
+
from 1</b></td>
|
|
1403
|
+
</tr>
|
|
1404
|
+
<tr>
|
|
1405
|
+
<td class="name"><code>value</code></td>
|
|
1406
|
+
<td class="type">
|
|
1407
|
+
<span class="param-type">Date</span>
|
|
1408
|
+
|
|
|
1409
|
+
<span class="param-type">string</span>
|
|
1410
|
+
</td>
|
|
1411
|
+
<td class="attributes">
|
|
1412
|
+
</td>
|
|
1413
|
+
<td class="default">
|
|
1414
|
+
</td>
|
|
1415
|
+
<td class="description last">The Date value to be set for this parameter <br>
|
|
1416
|
+
<ul>
|
|
1417
|
+
<li>HH:MI:SS.FF AM</li>
|
|
1418
|
+
<li>HH24:MI:SS.FF</li>
|
|
1419
|
+
<li>HH:MI:SS AM</li>
|
|
1420
|
+
<li>HH24:MI:SS</li>
|
|
1421
|
+
<li>HH:MI AM</li>
|
|
1422
|
+
<li>HH24:MI</li>
|
|
1423
|
+
<li>HH24:MI:SS.FF Z</li>
|
|
1424
|
+
<li>HH24:MI:SS Z</li>
|
|
1425
|
+
</ul>
|
|
1426
|
+
</td>
|
|
1427
|
+
</tr>
|
|
1428
|
+
<tr>
|
|
1429
|
+
<td class="name"><code>format</code></td>
|
|
1430
|
+
<td class="type">
|
|
1431
|
+
<span class="param-type">string</span>
|
|
1432
|
+
</td>
|
|
1433
|
+
<td class="attributes">
|
|
1434
|
+
<optional><br>
|
|
1435
|
+
</td>
|
|
1436
|
+
<td class="default">
|
|
1437
|
+
""
|
|
1438
|
+
</td>
|
|
1439
|
+
<td class="description last">One of the following formats:<br/></td>
|
|
1440
|
+
</tr>
|
|
1441
|
+
</tbody>
|
|
1442
|
+
</table>
|
|
1443
|
+
<dl class="details">
|
|
1444
|
+
</dl>
|
|
1445
|
+
<h5>Throws:</h5>
|
|
1446
|
+
<ul>
|
|
1447
|
+
<li>
|
|
1448
|
+
<div class="param-desc">
|
|
1449
|
+
Throws an error on invalid parameters.
|
|
1450
|
+
</div>
|
|
1451
|
+
</li>
|
|
1452
|
+
<li>
|
|
1453
|
+
<div class="param-desc">
|
|
1454
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1455
|
+
</div>
|
|
1456
|
+
</li>
|
|
1457
|
+
</ul>
|
|
1458
|
+
</dd>
|
|
1459
|
+
<dt>
|
|
1460
|
+
<h4 class="name" id="setTimestamp"><span class="type-signature"></span>setTimestamp<span
|
|
1461
|
+
class="signature">(columnIndex, value, <span class="optional">format</span>)</span><span
|
|
1462
|
+
class="type-signature"></span></h4>
|
|
1463
|
+
</dt>
|
|
1464
|
+
<dd>
|
|
1465
|
+
<div class="description">
|
|
1466
|
+
Sets a Timestamp parameter used for TIMESTAMP column types
|
|
1467
|
+
</div>
|
|
1468
|
+
<h5>Parameters:</h5>
|
|
1469
|
+
<table class="params">
|
|
1470
|
+
<thead>
|
|
1471
|
+
<tr>
|
|
1472
|
+
<th>Name</th>
|
|
1473
|
+
<th>Type</th>
|
|
1474
|
+
<th>Argument</th>
|
|
1475
|
+
<th>Default</th>
|
|
1476
|
+
<th class="last">Description</th>
|
|
1477
|
+
</tr>
|
|
1478
|
+
</thead>
|
|
1479
|
+
<tbody>
|
|
1480
|
+
<tr>
|
|
1481
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1482
|
+
<td class="type">
|
|
1483
|
+
<span class="param-type">integer</span>
|
|
1484
|
+
</td>
|
|
1485
|
+
<td class="attributes">
|
|
1486
|
+
</td>
|
|
1487
|
+
<td class="default">
|
|
1488
|
+
</td>
|
|
1489
|
+
<td class="description last">The index of the parameter in the prepared statement <b>starting
|
|
1490
|
+
from 1</b></td>
|
|
1491
|
+
</tr>
|
|
1492
|
+
<tr>
|
|
1493
|
+
<td class="name"><code>value</code></td>
|
|
1494
|
+
<td class="type">
|
|
1495
|
+
<span class="param-type">Date</span>
|
|
1496
|
+
|
|
|
1497
|
+
<span class="param-type">string</span>
|
|
1498
|
+
</td>
|
|
1499
|
+
<td class="attributes">
|
|
1500
|
+
</td>
|
|
1501
|
+
<td class="default">
|
|
1502
|
+
</td>
|
|
1503
|
+
<td class="description last">The timestamp value to be set for this parameter
|
|
1504
|
+
The default format is: <b>date</b> <b>separator</b> <b>time</b>, for example, <br>
|
|
1505
|
+
2001-01-02 01:02:03.123, where <b>date</b> is the format to use for the date value <br>
|
|
1506
|
+
(see setDate), <b>separator</b> can be a space, a comma, or the letter T, and <br>
|
|
1507
|
+
<b>time</b> is the format to use for the time value (see setTime).<br>
|
|
1508
|
+
Examples:<br>
|
|
1509
|
+
2001-01-02 01:02:03.123<br>
|
|
1510
|
+
2001-01-02,01:02:03.123<br>
|
|
1511
|
+
2001-01-02T01:02:03.123<br>
|
|
1512
|
+
<i>st.setTimestamp(4,"01.02.2003 01:02:03.123", "DD.MM.YYYY HH:MI:SS.FF");</i></td>
|
|
1513
|
+
</tr>
|
|
1514
|
+
<tr>
|
|
1515
|
+
<td class="name"><code>format</code></td>
|
|
1516
|
+
<td class="type">
|
|
1517
|
+
<span class="param-type">string</span>
|
|
1518
|
+
</td>
|
|
1519
|
+
<td class="attributes">
|
|
1520
|
+
<optional><br>
|
|
1521
|
+
</td>
|
|
1522
|
+
<td class="default">
|
|
1523
|
+
""
|
|
1524
|
+
</td>
|
|
1525
|
+
<td class="description last">Optional, see also setDate and setTime</td>
|
|
1526
|
+
</tr>
|
|
1527
|
+
</tbody>
|
|
1528
|
+
</table>
|
|
1529
|
+
<dl class="details">
|
|
1530
|
+
</dl>
|
|
1531
|
+
<h5>Throws:</h5>
|
|
1532
|
+
<ul>
|
|
1533
|
+
<li>
|
|
1534
|
+
<div class="param-desc">
|
|
1535
|
+
Throws an error on invalid parameters.
|
|
1536
|
+
</div>
|
|
1537
|
+
</li>
|
|
1538
|
+
<li>
|
|
1539
|
+
<div class="param-desc">
|
|
1540
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1541
|
+
</div>
|
|
1542
|
+
</li>
|
|
1543
|
+
</ul>
|
|
1544
|
+
</dd>
|
|
1545
|
+
<dt>
|
|
1546
|
+
<h4 class="name" id="setTinyInt"><span class="type-signature"></span>setTinyInt<span
|
|
1547
|
+
class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
|
|
1548
|
+
</dt>
|
|
1549
|
+
<dd>
|
|
1550
|
+
<div class="description">
|
|
1551
|
+
Sets an integer parameter used for TINYINT column types
|
|
1552
|
+
</div>
|
|
1553
|
+
<h5>Parameters:</h5>
|
|
1554
|
+
<table class="params">
|
|
1555
|
+
<thead>
|
|
1556
|
+
<tr>
|
|
1557
|
+
<th>Name</th>
|
|
1558
|
+
<th>Type</th>
|
|
1559
|
+
<th class="last">Description</th>
|
|
1560
|
+
</tr>
|
|
1561
|
+
</thead>
|
|
1562
|
+
<tbody>
|
|
1563
|
+
<tr>
|
|
1564
|
+
<td class="name"><code>columnIndex</code></td>
|
|
1565
|
+
<td class="type">
|
|
1566
|
+
<span class="param-type">integer</span>
|
|
1567
|
+
</td>
|
|
1568
|
+
<td class="description last">The index of the parameter in the prepared statement, <b>starting
|
|
1569
|
+
from 1</b></td>
|
|
1570
|
+
</tr>
|
|
1571
|
+
<tr>
|
|
1572
|
+
<td class="name"><code>value</code></td>
|
|
1573
|
+
<td class="type">
|
|
1574
|
+
<span class="param-type">integer</span>
|
|
1575
|
+
</td>
|
|
1576
|
+
<td class="description last">The integer value to be set for this parameter (unsigned char:
|
|
1577
|
+
min 0, max 255)
|
|
1578
|
+
</td>
|
|
1579
|
+
</tr>
|
|
1580
|
+
</tbody>
|
|
1581
|
+
</table>
|
|
1582
|
+
<dl class="details">
|
|
1583
|
+
</dl>
|
|
1584
|
+
<h5>Throws:</h5>
|
|
1585
|
+
<ul>
|
|
1586
|
+
<li>
|
|
1587
|
+
<div class="param-desc">
|
|
1588
|
+
Throws an error on invalid parameters.
|
|
1589
|
+
</div>
|
|
1590
|
+
</li>
|
|
1591
|
+
<li>
|
|
1592
|
+
<div class="param-desc">
|
|
1593
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
1594
|
+
</div>
|
|
1595
|
+
</li>
|
|
1596
|
+
</ul>
|
|
1597
|
+
</dd>
|
|
1598
|
+
</dl>
|
|
1599
|
+
</article>
|
|
1600
|
+
</section>
|
|
1601
|
+
</div>
|
|
1602
|
+
<nav>
|
|
1603
|
+
<h2><a href="index.html">Index</a></h2>
|
|
1604
|
+
<h3>Classes</h3>
|
|
1605
|
+
<table>
|
|
1606
|
+
<tr>
|
|
1607
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
1608
|
+
<td class="oblique">$.security</td>
|
|
1609
|
+
</tr>
|
|
1610
|
+
<tr>
|
|
1611
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
1612
|
+
<td class="oblique">$</td>
|
|
1613
|
+
</tr>
|
|
1614
|
+
<tr>
|
|
1615
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
1616
|
+
<td class="oblique">$.web</td>
|
|
1617
|
+
</tr>
|
|
1618
|
+
<tr>
|
|
1619
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
1620
|
+
<td class="oblique">$.db</td>
|
|
1621
|
+
</tr>
|
|
1622
|
+
<tr>
|
|
1623
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
1624
|
+
<td class="oblique">$.net.http</td>
|
|
1625
|
+
</tr>
|
|
1626
|
+
<tr>
|
|
1627
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
1628
|
+
<td class="oblique">$.hdb</td>
|
|
1629
|
+
</tr>
|
|
1630
|
+
<tr>
|
|
1631
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
1632
|
+
<td class="oblique">$.db</td>
|
|
1633
|
+
</tr>
|
|
1634
|
+
<tr>
|
|
1635
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
1636
|
+
<td class="oblique">$.hdb</td>
|
|
1637
|
+
</tr>
|
|
1638
|
+
<tr>
|
|
1639
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
1640
|
+
<td class="oblique">$.net</td>
|
|
1641
|
+
</tr>
|
|
1642
|
+
<tr>
|
|
1643
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
1644
|
+
<td class="oblique">$.net.http</td>
|
|
1645
|
+
</tr>
|
|
1646
|
+
<tr>
|
|
1647
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
1648
|
+
<td class="oblique">$.web</td>
|
|
1649
|
+
</tr>
|
|
1650
|
+
<tr>
|
|
1651
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
1652
|
+
<td class="oblique">$.jobs</td>
|
|
1653
|
+
</tr>
|
|
1654
|
+
<tr>
|
|
1655
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
1656
|
+
<td class="oblique">$.jobs</td>
|
|
1657
|
+
</tr>
|
|
1658
|
+
<tr>
|
|
1659
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
1660
|
+
<td class="oblique">$.jobs</td>
|
|
1661
|
+
</tr>
|
|
1662
|
+
<tr>
|
|
1663
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
1664
|
+
<td class="oblique">$.net</td>
|
|
1665
|
+
</tr>
|
|
1666
|
+
<tr>
|
|
1667
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
1668
|
+
<td class="oblique">$.db</td>
|
|
1669
|
+
</tr>
|
|
1670
|
+
<tr>
|
|
1671
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
1672
|
+
<td class="oblique">$.net.Mail</td>
|
|
1673
|
+
</tr>
|
|
1674
|
+
<tr>
|
|
1675
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
1676
|
+
<td class="oblique">$.db</td>
|
|
1677
|
+
</tr>
|
|
1678
|
+
<tr>
|
|
1679
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
1680
|
+
<td class="oblique">$.hdb</td>
|
|
1681
|
+
</tr>
|
|
1682
|
+
<tr>
|
|
1683
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
1684
|
+
<td class="oblique">$.net.http</td>
|
|
1685
|
+
</tr>
|
|
1686
|
+
<tr>
|
|
1687
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
1688
|
+
<td class="oblique">$.db</td>
|
|
1689
|
+
</tr>
|
|
1690
|
+
<tr>
|
|
1691
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
1692
|
+
<td class="oblique">$.hdb</td>
|
|
1693
|
+
</tr>
|
|
1694
|
+
<tr>
|
|
1695
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
1696
|
+
<td class="oblique">$.hdb</td>
|
|
1697
|
+
</tr>
|
|
1698
|
+
<tr>
|
|
1699
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
1700
|
+
<td class="oblique">$.db</td>
|
|
1701
|
+
</tr>
|
|
1702
|
+
<tr>
|
|
1703
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
1704
|
+
<td class="oblique">$.hdb</td>
|
|
1705
|
+
</tr>
|
|
1706
|
+
<tr>
|
|
1707
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
1708
|
+
<td class="oblique">$.util</td>
|
|
1709
|
+
</tr>
|
|
1710
|
+
<tr>
|
|
1711
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
1712
|
+
<td class="oblique">$</td>
|
|
1713
|
+
</tr>
|
|
1714
|
+
<tr>
|
|
1715
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
1716
|
+
<td class="oblique">$.text.analysis</td>
|
|
1717
|
+
</tr>
|
|
1718
|
+
<tr>
|
|
1719
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
1720
|
+
<td class="oblique">$.text.mining</td>
|
|
1721
|
+
</tr>
|
|
1722
|
+
<tr>
|
|
1723
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
1724
|
+
<td class="oblique">$.net</td>
|
|
1725
|
+
</tr>
|
|
1726
|
+
<tr>
|
|
1727
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
1728
|
+
<td class="oblique">$.db</td>
|
|
1729
|
+
</tr>
|
|
1730
|
+
<tr>
|
|
1731
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
1732
|
+
<td class="oblique">$.hdb</td>
|
|
1733
|
+
</tr>
|
|
1734
|
+
<tr>
|
|
1735
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
1736
|
+
<td class="oblique">$.security</td>
|
|
1737
|
+
</tr>
|
|
1738
|
+
<tr>
|
|
1739
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
1740
|
+
<td class="oblique">$.web</td>
|
|
1741
|
+
</tr>
|
|
1742
|
+
<tr>
|
|
1743
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
1744
|
+
<td class="oblique">$.web</td>
|
|
1745
|
+
</tr>
|
|
1746
|
+
<tr>
|
|
1747
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
1748
|
+
<td class="oblique">$.web</td>
|
|
1749
|
+
</tr>
|
|
1750
|
+
<tr>
|
|
1751
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
1752
|
+
<td class="oblique">$.web</td>
|
|
1753
|
+
</tr>
|
|
1754
|
+
<tr>
|
|
1755
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
1756
|
+
<td class="oblique">$.web</td>
|
|
1757
|
+
</tr>
|
|
1758
|
+
<tr>
|
|
1759
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
1760
|
+
<td class="oblique">$.util</td>
|
|
1761
|
+
</tr>
|
|
1762
|
+
</table>
|
|
1763
|
+
<h3>Namespaces</h3>
|
|
1764
|
+
<ul>
|
|
1765
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
1766
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
1767
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
1768
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
1769
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
1770
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
1771
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
1772
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
1773
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
1774
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
1775
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
1776
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
1777
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
1778
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
1779
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
1780
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
1781
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
1782
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
1783
|
+
</ul>
|
|
1784
|
+
</nav>
|
|
1785
|
+
<br clear="both">
|
|
1786
|
+
<footer>
|
|
1787
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
1788
|
+
&
|
|
1789
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
1790
|
+
</footer>
|
|
1791
|
+
<script>prettyPrint();</script>
|
|
1792
|
+
<script src="scripts/linenumber.js"></script>
|
|
1793
|
+
|
|
1794
|
+
</body>
|
|
1795
|
+
|
|
1796
|
+
</html>
|