@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.
Files changed (178) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/LICENSE +37 -0
  3. package/README.md +445 -0
  4. package/differences.md +162 -0
  5. package/docs/$.Application.html +262 -0
  6. package/docs/$.Session.html +674 -0
  7. package/docs/$.db.CallableStatement.html +2524 -0
  8. package/docs/$.db.Connection.html +511 -0
  9. package/docs/$.db.ParameterMetaData.html +805 -0
  10. package/docs/$.db.PreparedStatement.html +1796 -0
  11. package/docs/$.db.ResultSet.html +1308 -0
  12. package/docs/$.db.ResultSetMetaData.html +800 -0
  13. package/docs/$.db.SQLException.html +259 -0
  14. package/docs/$.db.html +773 -0
  15. package/docs/$.hdb.ColumnMetadata.html +438 -0
  16. package/docs/$.hdb.Connection.html +663 -0
  17. package/docs/$.hdb.ProcedureResult.html +280 -0
  18. package/docs/$.hdb.ResultSet.html +324 -0
  19. package/docs/$.hdb.ResultSetIterator.html +315 -0
  20. package/docs/$.hdb.ResultSetMetaData.html +259 -0
  21. package/docs/$.hdb.SQLException.html +259 -0
  22. package/docs/$.hdb.html +557 -0
  23. package/docs/$.html +471 -0
  24. package/docs/$.jobs.Job.html +783 -0
  25. package/docs/$.jobs.JobLog.html +380 -0
  26. package/docs/$.jobs.JobSchedules.html +852 -0
  27. package/docs/$.jobs.html +238 -0
  28. package/docs/$.net.Destination.html +304 -0
  29. package/docs/$.net.Mail.Part.html +510 -0
  30. package/docs/$.net.Mail.html +504 -0
  31. package/docs/$.net.SMTPConnection.html +347 -0
  32. package/docs/$.net.html +749 -0
  33. package/docs/$.net.http.Client.html +562 -0
  34. package/docs/$.net.http.Destination.html +237 -0
  35. package/docs/$.net.http.Request.html +567 -0
  36. package/docs/$.net.http.html +292 -0
  37. package/docs/$.security.AntiVirus.html +361 -0
  38. package/docs/$.security.Store.html +636 -0
  39. package/docs/$.security.crypto.html +414 -0
  40. package/docs/$.security.html +247 -0
  41. package/docs/$.security.x509.html +373 -0
  42. package/docs/$.text.analysis.Session.html +983 -0
  43. package/docs/$.text.analysis.html +242 -0
  44. package/docs/$.text.html +246 -0
  45. package/docs/$.text.mining.Session.html +2018 -0
  46. package/docs/$.text.mining.html +242 -0
  47. package/docs/$.trace.html +525 -0
  48. package/docs/$.util.SAXParser.html +955 -0
  49. package/docs/$.util.Zip.html +474 -0
  50. package/docs/$.util.codec.html +414 -0
  51. package/docs/$.util.compression.html +357 -0
  52. package/docs/$.util.html +325 -0
  53. package/docs/$.util.sql.html +290 -0
  54. package/docs/$.web.Body.html +333 -0
  55. package/docs/$.web.EntityList.html +296 -0
  56. package/docs/$.web.TupelList.html +496 -0
  57. package/docs/$.web.WebEntityRequest.html +393 -0
  58. package/docs/$.web.WebEntityResponse.html +392 -0
  59. package/docs/$.web.WebRequest.html +560 -0
  60. package/docs/$.web.WebResponse.html +609 -0
  61. package/docs/$.web.html +246 -0
  62. package/docs/Copyright-SAP.html +39 -0
  63. package/docs/Disclaimer-SAP.html +55 -0
  64. package/docs/index.html +232 -0
  65. package/docs/styles/jsdoc-default.css +382 -0
  66. package/lib/AppConfig.js +36 -0
  67. package/lib/AuditLogger.js +41 -0
  68. package/lib/cacert.js +26 -0
  69. package/lib/ctypes.js +153 -0
  70. package/lib/destinations/dest-provider.js +57 -0
  71. package/lib/index.js +235 -0
  72. package/lib/jobs/Action.js +40 -0
  73. package/lib/jobs/Job.js +100 -0
  74. package/lib/jobs/JobManager.js +150 -0
  75. package/lib/jobs/JobsRuntime.js +133 -0
  76. package/lib/jobs/SqlScriptJobRunner.js +36 -0
  77. package/lib/jobs/XsjsJobRunner.js +78 -0
  78. package/lib/jobs/index.js +11 -0
  79. package/lib/logging.js +16 -0
  80. package/lib/middleware.js +125 -0
  81. package/lib/odata/ODataService.js +125 -0
  82. package/lib/odata/index.js +7 -0
  83. package/lib/odata/service-factory.js +26 -0
  84. package/lib/passport-noauth.js +17 -0
  85. package/lib/routes.js +115 -0
  86. package/lib/runtime.js +740 -0
  87. package/lib/sandbox.js +40 -0
  88. package/lib/utils/XsJsFunctionRunner.js +57 -0
  89. package/lib/utils/XsJsLibFunctionRunner.js +57 -0
  90. package/lib/utils/buffer-utils.js +77 -0
  91. package/lib/utils/compression-utils.js +14 -0
  92. package/lib/utils/date-utils.js +104 -0
  93. package/lib/utils/errors/HttpError.js +20 -0
  94. package/lib/utils/errors/wrap-app-error.js +18 -0
  95. package/lib/utils/index.js +17 -0
  96. package/lib/utils/xs-function-runner.js +51 -0
  97. package/lib/utils/xs-types.js +21 -0
  98. package/lib/utils/xspath.js +36 -0
  99. package/lib/utils/xsstack.js +28 -0
  100. package/lib/views/error.html +28 -0
  101. package/lib/xsjs/Application.js +28 -0
  102. package/lib/xsjs/Locale.js +53 -0
  103. package/lib/xsjs/Session.js +31 -0
  104. package/lib/xsjs/constants.js +71 -0
  105. package/lib/xsjs/db/common/DbBase.js +85 -0
  106. package/lib/xsjs/db/common/DbOptions.js +163 -0
  107. package/lib/xsjs/db/common/arguments-validation.js +102 -0
  108. package/lib/xsjs/db/common/connection.js +12 -0
  109. package/lib/xsjs/db/common/enums.js +93 -0
  110. package/lib/xsjs/db/common/execute-batch.js +38 -0
  111. package/lib/xsjs/db/common/parse-time.js +139 -0
  112. package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
  113. package/lib/xsjs/db/dbapi/Connection.js +78 -0
  114. package/lib/xsjs/db/dbapi/DB.js +39 -0
  115. package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
  116. package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
  117. package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
  118. package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
  119. package/lib/xsjs/db/dbapi/Statement.js +514 -0
  120. package/lib/xsjs/db/dbapi/conversions.js +113 -0
  121. package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
  122. package/lib/xsjs/db/hdbapi/Connection.js +525 -0
  123. package/lib/xsjs/db/hdbapi/HDB.js +32 -0
  124. package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
  125. package/lib/xsjs/db/hdbapi/convert.js +77 -0
  126. package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
  127. package/lib/xsjs/db/index.js +4 -0
  128. package/lib/xsjs/index.js +13 -0
  129. package/lib/xsjs/jobs/Job.js +228 -0
  130. package/lib/xsjs/jobs/Jobs.js +11 -0
  131. package/lib/xsjs/jobs/Logs.js +127 -0
  132. package/lib/xsjs/jobs/Schedule.js +110 -0
  133. package/lib/xsjs/jobs/Schedules.js +108 -0
  134. package/lib/xsjs/net/Destination.js +43 -0
  135. package/lib/xsjs/net/http/Client.js +220 -0
  136. package/lib/xsjs/net/http/HTTP.js +72 -0
  137. package/lib/xsjs/net/index.js +5 -0
  138. package/lib/xsjs/net/smtp/Mail.js +38 -0
  139. package/lib/xsjs/net/smtp/Part.js +30 -0
  140. package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
  141. package/lib/xsjs/net/smtp/index.js +18 -0
  142. package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
  143. package/lib/xsjs/require.js +39 -0
  144. package/lib/xsjs/security/AntiVirus.js +31 -0
  145. package/lib/xsjs/security/Store.js +119 -0
  146. package/lib/xsjs/security/crypto.js +23 -0
  147. package/lib/xsjs/security/index.js +5 -0
  148. package/lib/xsjs/security/x509.js +12 -0
  149. package/lib/xsjs/text/analysis/Session.js +128 -0
  150. package/lib/xsjs/text/index.js +30 -0
  151. package/lib/xsjs/text/mining/Session.js +82 -0
  152. package/lib/xsjs/trace/trace.js +41 -0
  153. package/lib/xsjs/util/SAXParser.js +174 -0
  154. package/lib/xsjs/util/Zip.js +220 -0
  155. package/lib/xsjs/util/codec.js +33 -0
  156. package/lib/xsjs/util/compression.js +24 -0
  157. package/lib/xsjs/util/index.js +22 -0
  158. package/lib/xsjs/web/BasicWebEntity.js +41 -0
  159. package/lib/xsjs/web/EntityList.js +11 -0
  160. package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
  161. package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
  162. package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
  163. package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
  164. package/lib/xsjs/web/WebBody.js +135 -0
  165. package/lib/xsjs/web/WebEntityRequest.js +40 -0
  166. package/lib/xsjs/web/WebEntityResponse.js +26 -0
  167. package/lib/xsjs/web/WebRequest.js +209 -0
  168. package/lib/xsjs/web/WebResponse.js +183 -0
  169. package/lib/xsjs/web/index.js +4 -0
  170. package/lib/xsjs/web/utils/HeadersParser.js +53 -0
  171. package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
  172. package/lib/xsjs/web/utils/MultipartParser.js +163 -0
  173. package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
  174. package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
  175. package/lib/xsjslib/TextBundleWrapper.js +46 -0
  176. package/lib/xsjslib/index.js +11 -0
  177. package/npm-shrinkwrap.json +11540 -0
  178. package/package.json +84 -0
@@ -0,0 +1,2524 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Class: CallableStatement</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
+ </head>
16
+ <body>
17
+ <div id="main">
18
+ <h1 class="page-title">Class: CallableStatement</h1>
19
+ <section>
20
+ <header>
21
+ <h2>
22
+ <span class="ancestors"><a href="$.html">$</a><a href="$.db.html">.db</a>.</span>
23
+ CallableStatement
24
+ </h2>
25
+ <div class="class-description">$.db.CallableStatement represents a callable statement</div>
26
+ </header>
27
+ <article>
28
+ <div class="container-overview">
29
+ <dt>
30
+ <h4 class="name" id="CallableStatement"><span class="type-signature"></span>new
31
+ CallableStatement<span class="signature">()</span><span class="type-signature"></span></h4>
32
+ </dt>
33
+ <dd>
34
+ <div class="description">
35
+ Represents a callable statement
36
+ The CallableStatement class has a similar signature to the PreparedStatement class
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="close"><span class="type-signature">async </span>close<span
46
+ class="signature">()</span><span class="type-signature"></span></h4>
47
+ </dt>
48
+ <dd>
49
+ <div class="description">
50
+ Closes the 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
+ </dd>
68
+ <dt>
69
+ <h4 class="name" id="execute"><span class="type-signature">async </span>execute<span
70
+ class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
71
+ </dt>
72
+ <dd>
73
+ <div class="description">
74
+ Executes a specified statement
75
+ </div>
76
+ <dl class="details">
77
+ </dl>
78
+ <h5>Throws:</h5>
79
+ <ul>
80
+ <li>
81
+ <div class="param-desc">
82
+ Throws an error on invalid parameters or if the object the method is being called on is
83
+ 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
+ <h5>Returns:</h5>
93
+ <div class="param-desc">
94
+ True if the execution yielded result sets, false if not
95
+ </div>
96
+ <dl>
97
+ <dt>
98
+ Type
99
+ </dt>
100
+ <dd>
101
+ <span class="param-type">boolean</span>
102
+ </dd>
103
+ </dl>
104
+ </dd>
105
+ <dt>
106
+ <h4 class="name" id="getBigInt"><span class="type-signature"></span>getBigInt<span
107
+ class="signature">(index)</span><span class="type-signature"> &rarr; {ctypes.Int64}</span>
108
+ </h4>
109
+ </dt>
110
+ <dd>
111
+ <div class="description">
112
+ Returns an Int64 value of a BIGINT parameter
113
+ </div>
114
+ <h5>Parameters:</h5>
115
+ <table class="params">
116
+ <thead>
117
+ <tr>
118
+ <th>Name</th>
119
+ <th>Type</th>
120
+ <th class="last">Description</th>
121
+ </tr>
122
+ </thead>
123
+ <tbody>
124
+ <tr>
125
+ <td class="name"><code>index</code></td>
126
+ <td class="type">
127
+ <span class="param-type">integer</span>
128
+ </td>
129
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
130
+ </tr>
131
+ </tbody>
132
+ </table>
133
+ <dl class="details">
134
+ </dl>
135
+ <h5>Throws:</h5>
136
+ <ul>
137
+ <li>
138
+ <div class="param-desc">
139
+ Throws an error if the index parameter is not valid or the SQL type of the queried
140
+ parameter does not match.
141
+ </div>
142
+ </li>
143
+ <li>
144
+ <div class="param-desc">
145
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
146
+ </div>
147
+ </li>
148
+ </ul>
149
+ <h5>Returns:</h5>
150
+ <div class="param-desc">
151
+ ctypes.Int64
152
+ </div>
153
+ <dl>
154
+ <dt>
155
+ Type
156
+ </dt>
157
+ <dd>
158
+ <span class="param-type">ctypes.Int64</span>
159
+ </dd>
160
+ </dl>
161
+ </dd>
162
+ <dt>
163
+ <h4 class="name" id="getBlob"><span class="type-signature"></span>getBlob<span class="signature">(index)</span><span
164
+ class="type-signature"> &rarr; {ArrayBuffer}</span></h4>
165
+ </dt>
166
+ <dd>
167
+ <div class="description">
168
+ Returns the ArrayBuffer value of a BLOB specified parameter
169
+ </div>
170
+ <h5>Parameters:</h5>
171
+ <table class="params">
172
+ <thead>
173
+ <tr>
174
+ <th>Name</th>
175
+ <th>Type</th>
176
+ <th class="last">Description</th>
177
+ </tr>
178
+ </thead>
179
+ <tbody>
180
+ <tr>
181
+ <td class="name"><code>index</code></td>
182
+ <td class="type">
183
+ <span class="param-type">integer</span>
184
+ </td>
185
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
186
+ </tr>
187
+ </tbody>
188
+ </table>
189
+ <dl class="details">
190
+ </dl>
191
+ <h5>Throws:</h5>
192
+ <ul>
193
+ <li>
194
+ <div class="param-desc">
195
+ Throws an error if the index parameter is not valid or the SQL type of the queried
196
+ parameter does not match.
197
+ </div>
198
+ </li>
199
+ <li>
200
+ <div class="param-desc">
201
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
202
+ </div>
203
+ </li>
204
+ </ul>
205
+ <h5>Returns:</h5>
206
+ <div class="param-desc">
207
+ Blob representation
208
+ </div>
209
+ <dl>
210
+ <dt>
211
+ Type
212
+ </dt>
213
+ <dd>
214
+ <span class="param-type">ArrayBuffer</span>
215
+ </dd>
216
+ </dl>
217
+ </dd>
218
+ <dt>
219
+ <h4 class="name" id="getBString"><span class="type-signature"></span>getBString<span
220
+ class="signature">(index)</span><span class="type-signature"> &rarr; {ArrayBuffer}</span>
221
+ </h4>
222
+ </dt>
223
+ <dd>
224
+ <div class="description">
225
+ Returns an ArrayBuffer object of the specified column. getBString is used for BINARY and
226
+ VARBINARY column types.
227
+ </div>
228
+ <h5>Parameters:</h5>
229
+ <table class="params">
230
+ <thead>
231
+ <tr>
232
+ <th>Name</th>
233
+ <th>Type</th>
234
+ <th class="last">Description</th>
235
+ </tr>
236
+ </thead>
237
+ <tbody>
238
+ <tr>
239
+ <td class="name"><code>index</code></td>
240
+ <td class="type">
241
+ <span class="param-type">integer</span>
242
+ </td>
243
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
244
+ </tr>
245
+ </tbody>
246
+ </table>
247
+ <dl class="details">
248
+ </dl>
249
+ <h5>Throws:</h5>
250
+ <ul>
251
+ <li>
252
+ <div class="param-desc">
253
+ Throws an error if the index parameter is not valid or the SQL type of the queried
254
+ parameter does not match.
255
+ </div>
256
+ </li>
257
+ <li>
258
+ <div class="param-desc">
259
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
260
+ </div>
261
+ </li>
262
+ </ul>
263
+ <h5>Returns:</h5>
264
+ <div class="param-desc">
265
+ value ArrayBuffer object
266
+ </div>
267
+ <dl>
268
+ <dt>
269
+ Type
270
+ </dt>
271
+ <dd>
272
+ <span class="param-type">ArrayBuffer</span>
273
+ </dd>
274
+ </dl>
275
+ </dd>
276
+ <dt>
277
+ <h4 class="name" id="getClob"><span class="type-signature"></span>getClob<span class="signature">(index)</span><span
278
+ class="type-signature"> &rarr; {string}</span></h4>
279
+ </dt>
280
+ <dd>
281
+ <div class="description">
282
+ Returns the string value of a CLOB parameter
283
+ </div>
284
+ <h5>Parameters:</h5>
285
+ <table class="params">
286
+ <thead>
287
+ <tr>
288
+ <th>Name</th>
289
+ <th>Type</th>
290
+ <th class="last">Description</th>
291
+ </tr>
292
+ </thead>
293
+ <tbody>
294
+ <tr>
295
+ <td class="name"><code>index</code></td>
296
+ <td class="type">
297
+ <span class="param-type">integer</span>
298
+ </td>
299
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
300
+ </tr>
301
+ </tbody>
302
+ </table>
303
+ <dl class="details">
304
+ </dl>
305
+ <h5>Throws:</h5>
306
+ <ul>
307
+ <li>
308
+ <div class="param-desc">
309
+ Throws an error if the index parameter is not valid or the SQL type of the queried
310
+ parameter does not match.
311
+ </div>
312
+ </li>
313
+ <li>
314
+ <div class="param-desc">
315
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
316
+ </div>
317
+ </li>
318
+ </ul>
319
+ <h5>Returns:</h5>
320
+ <div class="param-desc">
321
+ String representation
322
+ </div>
323
+ <dl>
324
+ <dt>
325
+ Type
326
+ </dt>
327
+ <dd>
328
+ <span class="param-type">string</span>
329
+ </dd>
330
+ </dl>
331
+ </dd>
332
+ <dt>
333
+ <h4 class="name" id="getDate"><span class="type-signature"></span>getDate<span class="signature">(index)</span><span
334
+ class="type-signature"> &rarr; {Date}</span></h4>
335
+ </dt>
336
+ <dd>
337
+ <div class="description">
338
+ Used to retrieve the value of a DATE parameter
339
+ </div>
340
+ <h5>Parameters:</h5>
341
+ <table class="params">
342
+ <thead>
343
+ <tr>
344
+ <th>Name</th>
345
+ <th>Type</th>
346
+ <th class="last">Description</th>
347
+ </tr>
348
+ </thead>
349
+ <tbody>
350
+ <tr>
351
+ <td class="name"><code>index</code></td>
352
+ <td class="type">
353
+ <span class="param-type">integer</span>
354
+ </td>
355
+ <td class="description last">The index of the parameter, <b>starting from 1</b></td>
356
+ </tr>
357
+ </tbody>
358
+ </table>
359
+ <dl class="details">
360
+ </dl>
361
+ <h5>Throws:</h5>
362
+ <ul>
363
+ <li>
364
+ <div class="param-desc">
365
+ Throws an error if the index parameter is not valid or the SQL type of the queried
366
+ parameter does not match.
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
+ A JavaScript date object representing the value
378
+ </div>
379
+ <dl>
380
+ <dt>
381
+ Type
382
+ </dt>
383
+ <dd>
384
+ <span class="param-type">Date</span>
385
+ </dd>
386
+ </dl>
387
+ </dd>
388
+ <dt>
389
+ <h4 class="name" id="getDecimal"><span class="type-signature"></span>getDecimal<span
390
+ class="signature">(index)</span><span class="type-signature"> &rarr; {number}</span></h4>
391
+ </dt>
392
+ <dd>
393
+ <div class="description">
394
+ Returns a number value of a DECIMAL parameter
395
+ </div>
396
+ <h5>Parameters:</h5>
397
+ <table class="params">
398
+ <thead>
399
+ <tr>
400
+ <th>Name</th>
401
+ <th>Type</th>
402
+ <th class="last">Description</th>
403
+ </tr>
404
+ </thead>
405
+ <tbody>
406
+ <tr>
407
+ <td class="name"><code>index</code></td>
408
+ <td class="type">
409
+ <span class="param-type">integer</span>
410
+ </td>
411
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
412
+ </tr>
413
+ </tbody>
414
+ </table>
415
+ <dl class="details">
416
+ </dl>
417
+ <h5>Throws:</h5>
418
+ <ul>
419
+ <li>
420
+ <div class="param-desc">
421
+ Throws an error if the index parameter is not valid or the SQL type of the queried
422
+ parameter does not match.
423
+ </div>
424
+ </li>
425
+ <li>
426
+ <div class="param-desc">
427
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
428
+ </div>
429
+ </li>
430
+ </ul>
431
+ <h5>Returns:</h5>
432
+ <div class="param-desc">
433
+ Number representation
434
+ </div>
435
+ <dl>
436
+ <dt>
437
+ Type
438
+ </dt>
439
+ <dd>
440
+ <span class="param-type">number</span>
441
+ </dd>
442
+ </dl>
443
+ </dd>
444
+ <dt>
445
+ <h4 class="name" id="getDouble"><span class="type-signature"></span>getDouble<span
446
+ class="signature">(index)</span><span class="type-signature"> &rarr; {number}</span></h4>
447
+ </dt>
448
+ <dd>
449
+ <div class="description">
450
+ Returns a number value of a DOUBLE, FLOAT or REAL parameter
451
+ </div>
452
+ <h5>Parameters:</h5>
453
+ <table class="params">
454
+ <thead>
455
+ <tr>
456
+ <th>Name</th>
457
+ <th>Type</th>
458
+ <th class="last">Description</th>
459
+ </tr>
460
+ </thead>
461
+ <tbody>
462
+ <tr>
463
+ <td class="name"><code>index</code></td>
464
+ <td class="type">
465
+ <span class="param-type">integer</span>
466
+ </td>
467
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
468
+ </tr>
469
+ </tbody>
470
+ </table>
471
+ <dl class="details">
472
+ </dl>
473
+ <h5>Throws:</h5>
474
+ <ul>
475
+ <li>
476
+ <div class="param-desc">
477
+ Throws an error if the index parameter is not valid or the SQL type of the queried
478
+ parameter does not match.
479
+ </div>
480
+ </li>
481
+ <li>
482
+ <div class="param-desc">
483
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
484
+ </div>
485
+ </li>
486
+ </ul>
487
+ <h5>Returns:</h5>
488
+ <div class="param-desc">
489
+ Number representation
490
+ </div>
491
+ <dl>
492
+ <dt>
493
+ Type
494
+ </dt>
495
+ <dd>
496
+ <span class="param-type">number</span>
497
+ </dd>
498
+ </dl>
499
+ </dd>
500
+ <dt>
501
+ <h4 class="name" id="getFloat"><span class="type-signature"></span>getFloat<span class="signature">(columnIndex)</span><span
502
+ class="type-signature"> &rarr; {number}</span></h4>
503
+ </dt>
504
+ <dd>
505
+ <div class="description">
506
+ Returns a number value of the specified column. getFloat is used for FLOAT column types.
507
+ </div>
508
+ <h5>Parameters:</h5>
509
+ <table class="params">
510
+ <thead>
511
+ <tr>
512
+ <th>Name</th>
513
+ <th>Type</th>
514
+ <th class="last">Description</th>
515
+ </tr>
516
+ </thead>
517
+ <tbody>
518
+ <tr>
519
+ <td class="name"><code>columnIndex</code></td>
520
+ <td class="type">
521
+ <span class="param-type">integer</span>
522
+ </td>
523
+ <td class="description last">The target column <b>starting from 1</b></td>
524
+ </tr>
525
+ </tbody>
526
+ </table>
527
+ <dl class="details">
528
+ </dl>
529
+ <h5>Throws:</h5>
530
+ <ul>
531
+ <li>
532
+ <div class="param-desc">
533
+ Throws an error if the index parameter is not valid.
534
+ </div>
535
+ </li>
536
+ <li>
537
+ <div class="param-desc">
538
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
539
+ </div>
540
+ </li>
541
+ </ul>
542
+ <h5>Returns:</h5>
543
+ <div class="param-desc">
544
+ Number representation
545
+ </div>
546
+ <dl>
547
+ <dt>
548
+ Type
549
+ </dt>
550
+ <dd>
551
+ <span class="param-type">number</span>
552
+ </dd>
553
+ </dl>
554
+ </dd>
555
+ <dt>
556
+ <h4 class="name" id="getInteger"><span class="type-signature"></span>getInteger<span
557
+ class="signature">(index)</span><span class="type-signature"> &rarr; {integer}</span></h4>
558
+ </dt>
559
+ <dd>
560
+ <div class="description">
561
+ Returns an integer value of a TINYINT, SMALLINT, INT or BIGINT parameter types
562
+ An exception will be thrown if the value is bigger than 9007199254740992 (2^53) or smaller than
563
+ -9007199254740992 (-2^53).
564
+ </div>
565
+ <h5>Parameters:</h5>
566
+ <table class="params">
567
+ <thead>
568
+ <tr>
569
+ <th>Name</th>
570
+ <th>Type</th>
571
+ <th class="last">Description</th>
572
+ </tr>
573
+ </thead>
574
+ <tbody>
575
+ <tr>
576
+ <td class="name"><code>index</code></td>
577
+ <td class="type">
578
+ <span class="param-type">integer</span>
579
+ </td>
580
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
581
+ </tr>
582
+ </tbody>
583
+ </table>
584
+ <dl class="details">
585
+ </dl>
586
+ <h5>Throws:</h5>
587
+ <ul>
588
+ <li>
589
+ <div class="param-desc">
590
+ Throws an error if the index parameter is not valid or the SQL type of the queried
591
+ parameter does not match.
592
+ </div>
593
+ </li>
594
+ <li>
595
+ <div class="param-desc">
596
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
597
+ </div>
598
+ </li>
599
+ </ul>
600
+ <h5>Returns:</h5>
601
+ <div class="param-desc">
602
+ Integer representation
603
+ </div>
604
+ <dl>
605
+ <dt>
606
+ Type
607
+ </dt>
608
+ <dd>
609
+ <span class="param-type">integer</span>
610
+ </dd>
611
+ </dl>
612
+ </dd>
613
+ <dt>
614
+ <h4 class="name" id="getMoreResults"><span class="type-signature"></span>getMoreResults<span
615
+ class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
616
+ </dt>
617
+ <dd>
618
+ <div class="description">
619
+ Checks if more result sets are available and prepares the next result set for retrieval
620
+ </div>
621
+ <dl class="details">
622
+ </dl>
623
+ <h5>Throws:</h5>
624
+ <ul>
625
+ <li>
626
+ <div class="param-desc">
627
+ Throws an error if the object the method is being called on is not valid.
628
+ </div>
629
+ </li>
630
+ <li>
631
+ <div class="param-desc">
632
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
633
+ </div>
634
+ </li>
635
+ </ul>
636
+ <h5>Returns:</h5>
637
+ <div class="param-desc">
638
+ True if the next result set is available
639
+ </div>
640
+ <dl>
641
+ <dt>
642
+ Type
643
+ </dt>
644
+ <dd>
645
+ <span class="param-type">boolean</span>
646
+ </dd>
647
+ </dl>
648
+ </dd>
649
+ <dt>
650
+ <h4 class="name" id="getNClob"><span class="type-signature"></span>getNClob<span class="signature">(index)</span><span
651
+ class="type-signature"> &rarr; {string}</span></h4>
652
+ </dt>
653
+ <dd>
654
+ <div class="description">
655
+ Returns the string value of an NCLOB or TEXT parameter
656
+ </div>
657
+ <h5>Parameters:</h5>
658
+ <table class="params">
659
+ <thead>
660
+ <tr>
661
+ <th>Name</th>
662
+ <th>Type</th>
663
+ <th class="last">Description</th>
664
+ </tr>
665
+ </thead>
666
+ <tbody>
667
+ <tr>
668
+ <td class="name"><code>index</code></td>
669
+ <td class="type">
670
+ <span class="param-type">integer</span>
671
+ </td>
672
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
673
+ </tr>
674
+ </tbody>
675
+ </table>
676
+ <dl class="details">
677
+ </dl>
678
+ <h5>Throws:</h5>
679
+ <ul>
680
+ <li>
681
+ <div class="param-desc">
682
+ Throws an error if the index parameter is not valid or the SQL type of the queried
683
+ parameter does not match.
684
+ </div>
685
+ </li>
686
+ <li>
687
+ <div class="param-desc">
688
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
689
+ </div>
690
+ </li>
691
+ </ul>
692
+ <h5>Returns:</h5>
693
+ <div class="param-desc">
694
+ String representation
695
+ </div>
696
+ <dl>
697
+ <dt>
698
+ Type
699
+ </dt>
700
+ <dd>
701
+ <span class="param-type">string</span>
702
+ </dd>
703
+ </dl>
704
+ </dd>
705
+ <dt>
706
+ <h4 class="name" id="getNString"><span class="type-signature"></span>getNString<span
707
+ class="signature">(index)</span><span class="type-signature"> &rarr; {string}</span></h4>
708
+ </dt>
709
+ <dd>
710
+ <div class="description">
711
+ Returns the string value of an NCHAR, an NVARCHAR, or a SHORTTEXT parameter
712
+ </div>
713
+ <h5>Parameters:</h5>
714
+ <table class="params">
715
+ <thead>
716
+ <tr>
717
+ <th>Name</th>
718
+ <th>Type</th>
719
+ <th class="last">Description</th>
720
+ </tr>
721
+ </thead>
722
+ <tbody>
723
+ <tr>
724
+ <td class="name"><code>index</code></td>
725
+ <td class="type">
726
+ <span class="param-type">integer</span>
727
+ </td>
728
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
729
+ </tr>
730
+ </tbody>
731
+ </table>
732
+ <dl class="details">
733
+ </dl>
734
+ <h5>Throws:</h5>
735
+ <ul>
736
+ <li>
737
+ <div class="param-desc">
738
+ Throws an error if the index parameter is not valid or the SQL type of the queried
739
+ parameter does not match.
740
+ </div>
741
+ </li>
742
+ <li>
743
+ <div class="param-desc">
744
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
745
+ </div>
746
+ </li>
747
+ </ul>
748
+ <h5>Returns:</h5>
749
+ <div class="param-desc">
750
+ String representation
751
+ </div>
752
+ <dl>
753
+ <dt>
754
+ Type
755
+ </dt>
756
+ <dd>
757
+ <span class="param-type">string</span>
758
+ </dd>
759
+ </dl>
760
+ </dd>
761
+ <dt>
762
+ <h4 class="name" id="getParameterMetaData"><span
763
+ class="type-signature"></span>getParameterMetaData<span class="signature">()</span><span
764
+ class="type-signature"> &rarr; {<a
765
+ href="$.db.ParameterMetaData.html">$.db.ParameterMetaData</a>}</span></h4>
766
+ </dt>
767
+ <dd>
768
+ <div class="description">
769
+ Returns the metadata for this statement
770
+ </div>
771
+ <dl class="details">
772
+ </dl>
773
+ <h5>Throws:</h5>
774
+ <ul>
775
+ <li>
776
+ <div class="param-desc">
777
+ Throws an error if the object the method is being called on is not valid.
778
+ </div>
779
+ </li>
780
+ <li>
781
+ <div class="param-desc">
782
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
783
+ </div>
784
+ </li>
785
+ </ul>
786
+ <h5>Returns:</h5>
787
+ <div class="param-desc">
788
+ ParameterMetaData object
789
+ </div>
790
+ <dl>
791
+ <dt>
792
+ Type
793
+ </dt>
794
+ <dd>
795
+ <span class="param-type"><a
796
+ href="$.db.ParameterMetaData.html">$.db.ParameterMetaData</a></span>
797
+ </dd>
798
+ </dl>
799
+ </dd>
800
+ <dt>
801
+ <h4 class="name" id="getReal"><span class="type-signature"></span>getReal<span class="signature">(columnIndex)</span><span
802
+ class="type-signature"> &rarr; {number}</span></h4>
803
+ </dt>
804
+ <dd>
805
+ <div class="description">
806
+ Returns a number value of the specified column. getReal is used for REAL column types.
807
+ </div>
808
+ <h5>Parameters:</h5>
809
+ <table class="params">
810
+ <thead>
811
+ <tr>
812
+ <th>Name</th>
813
+ <th>Type</th>
814
+ <th class="last">Description</th>
815
+ </tr>
816
+ </thead>
817
+ <tbody>
818
+ <tr>
819
+ <td class="name"><code>columnIndex</code></td>
820
+ <td class="type">
821
+ <span class="param-type">integer</span>
822
+ </td>
823
+ <td class="description last">The target column <b>starting from 1</b></td>
824
+ </tr>
825
+ </tbody>
826
+ </table>
827
+ <dl class="details">
828
+ </dl>
829
+ <h5>Throws:</h5>
830
+ <ul>
831
+ <li>
832
+ <div class="param-desc">
833
+ Throws an error if the index parameter is not valid.
834
+ </div>
835
+ </li>
836
+ <li>
837
+ <div class="param-desc">
838
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
839
+ </div>
840
+ </li>
841
+ </ul>
842
+ <h5>Returns:</h5>
843
+ <div class="param-desc">
844
+ Number representation
845
+ </div>
846
+ <dl>
847
+ <dt>
848
+ Type
849
+ </dt>
850
+ <dd>
851
+ <span class="param-type">number</span>
852
+ </dd>
853
+ </dl>
854
+ </dd>
855
+ <dt>
856
+ <h4 class="name" id="getResultSet"><span class="type-signature"></span>getResultSet<span
857
+ class="signature">()</span><span class="type-signature"> &rarr; {<a
858
+ href="$.db.ResultSet.html">$.db.ResultSet</a>}</span></h4>
859
+ </dt>
860
+ <dd>
861
+ <div class="description">
862
+ Returns a result set representing a table output parameter
863
+ </div>
864
+ <dl class="details">
865
+ </dl>
866
+ <h5>Throws:</h5>
867
+ <ul>
868
+ <li>
869
+ <div class="param-desc">
870
+ Throws an error if the object the method is being called on is not valid.
871
+ </div>
872
+ </li>
873
+ <li>
874
+ <div class="param-desc">
875
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
876
+ </div>
877
+ </li>
878
+ </ul>
879
+ <h5>Returns:</h5>
880
+ <div class="param-desc">
881
+ ResultSet of the next output table parameter
882
+ </div>
883
+ <dl>
884
+ <dt>
885
+ Type
886
+ </dt>
887
+ <dd>
888
+ <span class="param-type"><a href="$.db.ResultSet.html">$.db.ResultSet</a></span>
889
+ </dd>
890
+ </dl>
891
+ </dd>
892
+ <dt>
893
+ <h4 class="name" id="getSeconddate"><span class="type-signature"></span>getSeconddate<span
894
+ class="signature">(index)</span><span class="type-signature"> &rarr; {Date}</span></h4>
895
+ </dt>
896
+ <dd>
897
+ <div class="description">
898
+ Used to retrieve the value of a SECONDDATE parameter
899
+ </div>
900
+ <h5>Parameters:</h5>
901
+ <table class="params">
902
+ <thead>
903
+ <tr>
904
+ <th>Name</th>
905
+ <th>Type</th>
906
+ <th class="last">Description</th>
907
+ </tr>
908
+ </thead>
909
+ <tbody>
910
+ <tr>
911
+ <td class="name"><code>index</code></td>
912
+ <td class="type">
913
+ <span class="param-type">integer</span>
914
+ </td>
915
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
916
+ </tr>
917
+ </tbody>
918
+ </table>
919
+ <dl class="details">
920
+ </dl>
921
+ <h5>Throws:</h5>
922
+ <ul>
923
+ <li>
924
+ <div class="param-desc">
925
+ Throws an error if the index parameter is not valid or the SQL type of the queried
926
+ parameter does not match.
927
+ </div>
928
+ </li>
929
+ <li>
930
+ <div class="param-desc">
931
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
932
+ </div>
933
+ </li>
934
+ </ul>
935
+ <h5>Returns:</h5>
936
+ <div class="param-desc">
937
+ A JavaScript date object representing the value
938
+ </div>
939
+ <dl>
940
+ <dt>
941
+ Type
942
+ </dt>
943
+ <dd>
944
+ <span class="param-type">Date</span>
945
+ </dd>
946
+ </dl>
947
+ </dd>
948
+ <dt>
949
+ <h4 class="name" id="getSQLWarning"><span class="type-signature"></span>getSQLWarning<span
950
+ class="signature">()</span><span class="type-signature"> &rarr; {Object|null}</span></h4>
951
+ </dt>
952
+ <dd>
953
+ <div class="description">
954
+ Returns the warning of the most recently executed statement.
955
+ </div>
956
+ <dl class="details">
957
+ </dl>
958
+ <h5>Throws:</h5>
959
+ <div class="param-desc">
960
+ Throws an error if the object the method is being called on is not valid.
961
+ </div>
962
+ <h5>Returns:</h5>
963
+ <div class="param-desc">
964
+ The return value has two properties: 'code' and 'message'.
965
+ 'null' is returned if the most recent statement didn't issue a warning.
966
+ </div>
967
+ <dl>
968
+ <dt>
969
+ Type
970
+ </dt>
971
+ <dd>
972
+ <span class="param-type">Object</span>
973
+ |
974
+ <span class="param-type">null</span>
975
+ </dd>
976
+ </dl>
977
+ </dd>
978
+ <dt>
979
+ <h4 class="name" id="getString"><span class="type-signature"></span>getString<span
980
+ class="signature">(index)</span><span class="type-signature"> &rarr; {string}</span></h4>
981
+ </dt>
982
+ <dd>
983
+ <div class="description">
984
+ Returns a string value of a CHAR or VARCHAR parameter; ASCII only, not suitable for strings
985
+ containing Unicode characters.
986
+ </div>
987
+ <h5>Parameters:</h5>
988
+ <table class="params">
989
+ <thead>
990
+ <tr>
991
+ <th>Name</th>
992
+ <th>Type</th>
993
+ <th class="last">Description</th>
994
+ </tr>
995
+ </thead>
996
+ <tbody>
997
+ <tr>
998
+ <td class="name"><code>index</code></td>
999
+ <td class="type">
1000
+ <span class="param-type">integer</span>
1001
+ </td>
1002
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1003
+ </tr>
1004
+ </tbody>
1005
+ </table>
1006
+ <dl class="details">
1007
+ </dl>
1008
+ <h5>Throws:</h5>
1009
+ <ul>
1010
+ <li>
1011
+ <div class="param-desc">
1012
+ Throws an error if the index parameter is not valid or the SQL type of the queried
1013
+ parameter does not match.
1014
+ </div>
1015
+ </li>
1016
+ <li>
1017
+ <div class="param-desc">
1018
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1019
+ </div>
1020
+ </li>
1021
+ </ul>
1022
+ <h5>Returns:</h5>
1023
+ <div class="param-desc">
1024
+ String representation
1025
+ </div>
1026
+ <dl>
1027
+ <dt>
1028
+ Type
1029
+ </dt>
1030
+ <dd>
1031
+ <span class="param-type">string</span>
1032
+ </dd>
1033
+ </dl>
1034
+ </dd>
1035
+ <dt>
1036
+ <h4 class="name" id="getText"><span class="type-signature"></span>getText<span class="signature">(index)</span><span
1037
+ class="type-signature"> &rarr; {string}</span></h4>
1038
+ </dt>
1039
+ <dd>
1040
+ <div class="description">
1041
+ Returns the string value of a TEXT parameter
1042
+ </div>
1043
+ <h5>Parameters:</h5>
1044
+ <table class="params">
1045
+ <thead>
1046
+ <tr>
1047
+ <th>Name</th>
1048
+ <th>Type</th>
1049
+ <th class="last">Description</th>
1050
+ </tr>
1051
+ </thead>
1052
+ <tbody>
1053
+ <tr>
1054
+ <td class="name"><code>index</code></td>
1055
+ <td class="type">
1056
+ <span class="param-type">integer</span>
1057
+ </td>
1058
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1059
+ </tr>
1060
+ </tbody>
1061
+ </table>
1062
+ <dl class="details">
1063
+ </dl>
1064
+ <h5>Throws:</h5>
1065
+ <ul>
1066
+ <li>
1067
+ <div class="param-desc">
1068
+ Throws an error if the index parameter is not valid or the SQL type of the queried
1069
+ parameter does not match.
1070
+ </div>
1071
+ </li>
1072
+ <li>
1073
+ <div class="param-desc">
1074
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1075
+ </div>
1076
+ </li>
1077
+ </ul>
1078
+ <h5>Returns:</h5>
1079
+ <div class="param-desc">
1080
+ String representation
1081
+ </div>
1082
+ <dl>
1083
+ <dt>
1084
+ Type
1085
+ </dt>
1086
+ <dd>
1087
+ <span class="param-type">string</span>
1088
+ </dd>
1089
+ </dl>
1090
+ </dd>
1091
+ <dt>
1092
+ <h4 class="name" id="getTime"><span class="type-signature"></span>getTime<span class="signature">(index)</span><span
1093
+ class="type-signature"> &rarr; {Date}</span></h4>
1094
+ </dt>
1095
+ <dd>
1096
+ <div class="description">
1097
+ Used to retrieve the value of a TIME parameter
1098
+ </div>
1099
+ <h5>Parameters:</h5>
1100
+ <table class="params">
1101
+ <thead>
1102
+ <tr>
1103
+ <th>Name</th>
1104
+ <th>Type</th>
1105
+ <th class="last">Description</th>
1106
+ </tr>
1107
+ </thead>
1108
+ <tbody>
1109
+ <tr>
1110
+ <td class="name"><code>index</code></td>
1111
+ <td class="type">
1112
+ <span class="param-type">integer</span>
1113
+ </td>
1114
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1115
+ </tr>
1116
+ </tbody>
1117
+ </table>
1118
+ <dl class="details">
1119
+ </dl>
1120
+ <h5>Throws:</h5>
1121
+ <ul>
1122
+ <li>
1123
+ <div class="param-desc">
1124
+ Throws an error if the index parameter is not valid or the SQL type of the queried
1125
+ parameter does not match.
1126
+ </div>
1127
+ </li>
1128
+ <li>
1129
+ <div class="param-desc">
1130
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1131
+ </div>
1132
+ </li>
1133
+ </ul>
1134
+ <h5>Returns:</h5>
1135
+ <div class="param-desc">
1136
+ A JavaScript date object representing the value
1137
+ </div>
1138
+ <dl>
1139
+ <dt>
1140
+ Type
1141
+ </dt>
1142
+ <dd>
1143
+ <span class="param-type">Date</span>
1144
+ </dd>
1145
+ </dl>
1146
+ </dd>
1147
+ <dt>
1148
+ <h4 class="name" id="getTimestamp"><span class="type-signature"></span>getTimestamp<span
1149
+ class="signature">(index)</span><span class="type-signature"> &rarr; {Date}</span></h4>
1150
+ </dt>
1151
+ <dd>
1152
+ <div class="description">
1153
+ Used to retrieve the value of a TIMESTAMP parameter. <br>
1154
+ As this type contains only time information and no date, the JavaScript's date object will
1155
+ always be 1 Jan 1970 plus the time offset.<br>
1156
+ For example: if the stored value is 10:00:00, the JavaScript date object will specify: 1 Jan
1157
+ 1970 10:00:00
1158
+ </div>
1159
+ <h5>Parameters:</h5>
1160
+ <table class="params">
1161
+ <thead>
1162
+ <tr>
1163
+ <th>Name</th>
1164
+ <th>Type</th>
1165
+ <th class="last">Description</th>
1166
+ </tr>
1167
+ </thead>
1168
+ <tbody>
1169
+ <tr>
1170
+ <td class="name"><code>index</code></td>
1171
+ <td class="type">
1172
+ <span class="param-type">integer</span>
1173
+ </td>
1174
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1175
+ </tr>
1176
+ </tbody>
1177
+ </table>
1178
+ <dl class="details">
1179
+ </dl>
1180
+ <h5>Throws:</h5>
1181
+ <ul>
1182
+ <li>
1183
+ <div class="param-desc">
1184
+ Throws an error if the index parameter is not valid or the SQL type of the queried
1185
+ parameter does not match.
1186
+ </div>
1187
+ </li>
1188
+ <li>
1189
+ <div class="param-desc">
1190
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1191
+ </div>
1192
+ </li>
1193
+ </ul>
1194
+ <h5>Returns:</h5>
1195
+ <div class="param-desc">
1196
+ A JavaScript date object representing the value
1197
+ </div>
1198
+ <dl>
1199
+ <dt>
1200
+ Type
1201
+ </dt>
1202
+ <dd>
1203
+ <span class="param-type">Date</span>
1204
+ </dd>
1205
+ </dl>
1206
+ </dd>
1207
+ <dt>
1208
+ <h4 class="name" id="isClosed"><span class="type-signature"></span>isClosed<span class="signature">()</span><span
1209
+ class="type-signature"> &rarr; {boolean}</span></h4>
1210
+ </dt>
1211
+ <dd>
1212
+ <div class="description">
1213
+ Checks if the statement is closed.
1214
+ </div>
1215
+ <dl class="details">
1216
+ </dl>
1217
+ <h5>Throws:</h5>
1218
+ <ul>
1219
+ <li>
1220
+ <div class="param-desc">
1221
+ Throws an error if the object the method is being called on is not valid.
1222
+ </div>
1223
+ </li>
1224
+ <li>
1225
+ <div class="param-desc">
1226
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1227
+ </div>
1228
+ </li>
1229
+ </ul>
1230
+ <h5>Returns:</h5>
1231
+ <div class="param-desc">
1232
+ Returns true if the statement is already closed, false if not
1233
+ </div>
1234
+ <dl>
1235
+ <dt>
1236
+ Type
1237
+ </dt>
1238
+ <dd>
1239
+ <span class="param-type">boolean</span>
1240
+ </dd>
1241
+ </dl>
1242
+ </dd>
1243
+ <dt>
1244
+ <h4 class="name" id="setBigInt"><span class="type-signature"></span>setBigInt<span
1245
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1246
+ </dt>
1247
+ <dd>
1248
+ <div class="description">
1249
+ Sets an integer parameter used for BIGINT parameter types
1250
+ </div>
1251
+ <h5>Parameters:</h5>
1252
+ <table class="params">
1253
+ <thead>
1254
+ <tr>
1255
+ <th>Name</th>
1256
+ <th>Type</th>
1257
+ <th class="last">Description</th>
1258
+ </tr>
1259
+ </thead>
1260
+ <tbody>
1261
+ <tr>
1262
+ <td class="name"><code>index</code></td>
1263
+ <td class="type">
1264
+ <span class="param-type">integer</span>
1265
+ </td>
1266
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1267
+ </tr>
1268
+ <tr>
1269
+ <td class="name"><code>value</code></td>
1270
+ <td class="type">
1271
+ <span class="param-type">integer</span>
1272
+ </td>
1273
+ <td class="description last">The number value to be set for this parameter</td>
1274
+ </tr>
1275
+ </tbody>
1276
+ </table>
1277
+ <dl class="details">
1278
+ </dl>
1279
+ <h5>Throws:</h5>
1280
+ <ul>
1281
+ <li>
1282
+ <div class="param-desc">
1283
+ Throws an error on invalid parameters.
1284
+ </div>
1285
+ </li>
1286
+ <li>
1287
+ <div class="param-desc">
1288
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1289
+ </div>
1290
+ </li>
1291
+ </ul>
1292
+ </dd>
1293
+ <dt>
1294
+ <h4 class="name" id="setBlob"><span class="type-signature"></span>setBlob<span class="signature">(index, value)</span><span
1295
+ class="type-signature"></span></h4>
1296
+ </dt>
1297
+ <dd>
1298
+ <div class="description">
1299
+ setBlob is used to specify the values for CHAR, VARCHAR, NCHAR, NVARCHAR, BINARY, VARBINARY
1300
+ parameter types.
1301
+ </div>
1302
+ <h5>Parameters:</h5>
1303
+ <table class="params">
1304
+ <thead>
1305
+ <tr>
1306
+ <th>Name</th>
1307
+ <th>Type</th>
1308
+ <th class="last">Description</th>
1309
+ </tr>
1310
+ </thead>
1311
+ <tbody>
1312
+ <tr>
1313
+ <td class="name"><code>index</code></td>
1314
+ <td class="type">
1315
+ <span class="param-type">integer</span>
1316
+ </td>
1317
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1318
+ </tr>
1319
+ <tr>
1320
+ <td class="name"><code>value</code></td>
1321
+ <td class="type">
1322
+ <span class="param-type">ArrayBuffer</span>
1323
+ </td>
1324
+ <td class="description last">The ArrayBuffer object to be set for this parameter, can also
1325
+ be an array of integers or a string.
1326
+ </td>
1327
+ </tr>
1328
+ </tbody>
1329
+ </table>
1330
+ <dl class="details">
1331
+ </dl>
1332
+ <h5>Throws:</h5>
1333
+ <ul>
1334
+ <li>
1335
+ <div class="param-desc">
1336
+ Throws an error on invalid parameters.
1337
+ </div>
1338
+ </li>
1339
+ <li>
1340
+ <div class="param-desc">
1341
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1342
+ </div>
1343
+ </li>
1344
+ </ul>
1345
+ </dd>
1346
+ <dt>
1347
+ <h4 class="name" id="setBString"><span class="type-signature"></span>setBString<span
1348
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1349
+ </dt>
1350
+ <dd>
1351
+ <div class="description">
1352
+ Sets a string parameter used for BINARY, VARBINARY parameter types. <br> Remark: the BINARY type
1353
+ is deprecated - its behavior in row store and column store differs in that row store may pad
1354
+ with zeros.
1355
+ </div>
1356
+ <h5>Parameters:</h5>
1357
+ <table class="params">
1358
+ <thead>
1359
+ <tr>
1360
+ <th>Name</th>
1361
+ <th>Type</th>
1362
+ <th class="last">Description</th>
1363
+ </tr>
1364
+ </thead>
1365
+ <tbody>
1366
+ <tr>
1367
+ <td class="name"><code>index</code></td>
1368
+ <td class="type">
1369
+ <span class="param-type">integer</span>
1370
+ </td>
1371
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1372
+ </tr>
1373
+ <tr>
1374
+ <td class="name"><code>value</code></td>
1375
+ <td class="type">
1376
+ <span class="param-type">ArrayBuffer</span>
1377
+ </td>
1378
+ <td class="description last">The ArrayBuffer object to be set for this parameter.</td>
1379
+ </tr>
1380
+ </tbody>
1381
+ </table>
1382
+ <dl class="details">
1383
+ </dl>
1384
+ <h5>Throws:</h5>
1385
+ <ul>
1386
+ <li>
1387
+ <div class="param-desc">
1388
+ Throws an error on invalid parameters.
1389
+ </div>
1390
+ </li>
1391
+ <li>
1392
+ <div class="param-desc">
1393
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1394
+ </div>
1395
+ </li>
1396
+ </ul>
1397
+ </dd>
1398
+ <dt>
1399
+ <h4 class="name" id="setClob"><span class="type-signature"></span>setClob<span class="signature">(index, value)</span><span
1400
+ class="type-signature"></span></h4>
1401
+ </dt>
1402
+ <dd>
1403
+ <div class="description">
1404
+ setClob is used to specify the values for CLOB parameter types.
1405
+ </div>
1406
+ <h5>Parameters:</h5>
1407
+ <table class="params">
1408
+ <thead>
1409
+ <tr>
1410
+ <th>Name</th>
1411
+ <th>Type</th>
1412
+ <th class="last">Description</th>
1413
+ </tr>
1414
+ </thead>
1415
+ <tbody>
1416
+ <tr>
1417
+ <td class="name"><code>index</code></td>
1418
+ <td class="type">
1419
+ <span class="param-type">integer</span>
1420
+ </td>
1421
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1422
+ </tr>
1423
+ <tr>
1424
+ <td class="name"><code>value</code></td>
1425
+ <td class="type">
1426
+ <span class="param-type">string</span>
1427
+ </td>
1428
+ <td class="description last">The string value to be set for this parameter</td>
1429
+ </tr>
1430
+ </tbody>
1431
+ </table>
1432
+ <dl class="details">
1433
+ </dl>
1434
+ <h5>Throws:</h5>
1435
+ <ul>
1436
+ <li>
1437
+ <div class="param-desc">
1438
+ Throws an error on invalid parameters.
1439
+ </div>
1440
+ </li>
1441
+ <li>
1442
+ <div class="param-desc">
1443
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1444
+ </div>
1445
+ </li>
1446
+ </ul>
1447
+ </dd>
1448
+ <dt>
1449
+ <h4 class="name" id="setDate"><span class="type-signature"></span>setDate<span class="signature">(index, value, <span
1450
+ class="optional">format</span>)</span><span class="type-signature"></span></h4>
1451
+ </dt>
1452
+ <dd>
1453
+ <div class="description">
1454
+ Sets a Date parameter for DATE parameters, but works with TIME and TIMESTAMP.<br/>
1455
+ It is not possible to set the time with setDate; you can only set the date
1456
+ </div>
1457
+ <h5>Parameters:</h5>
1458
+ <table class="params">
1459
+ <thead>
1460
+ <tr>
1461
+ <th>Name</th>
1462
+ <th>Type</th>
1463
+ <th>Argument</th>
1464
+ <th>Default</th>
1465
+ <th class="last">Description</th>
1466
+ </tr>
1467
+ </thead>
1468
+ <tbody>
1469
+ <tr>
1470
+ <td class="name"><code>index</code></td>
1471
+ <td class="type">
1472
+ <span class="param-type">integer</span>
1473
+ </td>
1474
+ <td class="attributes">
1475
+ </td>
1476
+ <td class="default">
1477
+ </td>
1478
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1479
+ </tr>
1480
+ <tr>
1481
+ <td class="name"><code>value</code></td>
1482
+ <td class="type">
1483
+ <span class="param-type">Date</span>
1484
+ |
1485
+ <span class="param-type">string</span>
1486
+ </td>
1487
+ <td class="attributes">
1488
+ </td>
1489
+ <td class="default">
1490
+ </td>
1491
+ <td class="description last">The date to be set for this parameter <br/>
1492
+ The parameter can be a Date object, a string in default ptime format (YYYY-MM-DD), or a
1493
+ string in the optionally specified format.<br/>
1494
+ For example: 'yyyymmdd' or 'yyyy-mm-dd' or 'yyyy/mm/dd'
1495
+ <ul>
1496
+ <li>Y,YY,YYY,YYYY-year</li>
1497
+ <li>D-day</li>
1498
+ <li>J-Julian day</li>
1499
+ <li>MONTH-by name,MON-abbr.</li>
1500
+ <li>M-month</li>
1501
+ <li>Q-quarter</li>
1502
+ <li>RM-Roman numeral month</li>
1503
+ <li>W-week of month</li>
1504
+ <li>WW-week of year.</li>
1505
+ </ul>
1506
+ <br>
1507
+ Note that when you construct a new Date JavaScript object, the month number starts from
1508
+ <b>0</b> (not 1).<br>
1509
+ For example the following statement represents <em>1st of Jan, 2010</em>:<br>
1510
+ <i>new Date(2010,0,1);</i></td>
1511
+ </tr>
1512
+ <tr>
1513
+ <td class="name"><code>format</code></td>
1514
+ <td class="type">
1515
+ <span class="param-type">string</span>
1516
+ </td>
1517
+ <td class="attributes">
1518
+ &lt;optional><br>
1519
+ </td>
1520
+ <td class="default">
1521
+ ""
1522
+ </td>
1523
+ <td class="description last">One of the following formats: <br/></td>
1524
+ </tr>
1525
+ </tbody>
1526
+ </table>
1527
+ <dl class="details">
1528
+ </dl>
1529
+ <h5>Throws:</h5>
1530
+ <ul>
1531
+ <li>
1532
+ <div class="param-desc">
1533
+ Throws an error on invalid parameters.
1534
+ </div>
1535
+ </li>
1536
+ <li>
1537
+ <div class="param-desc">
1538
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1539
+ </div>
1540
+ </li>
1541
+ </ul>
1542
+ </dd>
1543
+ <dt>
1544
+ <h4 class="name" id="setDecimal"><span class="type-signature"></span>setDecimal<span
1545
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1546
+ </dt>
1547
+ <dd>
1548
+ <div class="description">
1549
+ setDecimal sets a decimal parameter used for DECIMAL parameter types
1550
+ </div>
1551
+ <h5>Parameters:</h5>
1552
+ <table class="params">
1553
+ <thead>
1554
+ <tr>
1555
+ <th>Name</th>
1556
+ <th>Type</th>
1557
+ <th class="last">Description</th>
1558
+ </tr>
1559
+ </thead>
1560
+ <tbody>
1561
+ <tr>
1562
+ <td class="name"><code>index</code></td>
1563
+ <td class="type">
1564
+ <span class="param-type">integer</span>
1565
+ </td>
1566
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1567
+ </tr>
1568
+ <tr>
1569
+ <td class="name"><code>value</code></td>
1570
+ <td class="type">
1571
+ <span class="param-type">number</span>
1572
+ </td>
1573
+ <td class="description last">The number value to be set for this parameter</td>
1574
+ </tr>
1575
+ </tbody>
1576
+ </table>
1577
+ <dl class="details">
1578
+ </dl>
1579
+ <h5>Throws:</h5>
1580
+ <ul>
1581
+ <li>
1582
+ <div class="param-desc">
1583
+ Throws an error on invalid parameters.
1584
+ </div>
1585
+ </li>
1586
+ <li>
1587
+ <div class="param-desc">
1588
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1589
+ </div>
1590
+ </li>
1591
+ </ul>
1592
+ </dd>
1593
+ <dt>
1594
+ <h4 class="name" id="setDouble"><span class="type-signature"></span>setDouble<span
1595
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1596
+ </dt>
1597
+ <dd>
1598
+ <div class="description">
1599
+ setDouble sets a double parameter used for FLOAT and DOUBLE parameter types
1600
+ </div>
1601
+ <h5>Parameters:</h5>
1602
+ <table class="params">
1603
+ <thead>
1604
+ <tr>
1605
+ <th>Name</th>
1606
+ <th>Type</th>
1607
+ <th class="last">Description</th>
1608
+ </tr>
1609
+ </thead>
1610
+ <tbody>
1611
+ <tr>
1612
+ <td class="name"><code>index</code></td>
1613
+ <td class="type">
1614
+ <span class="param-type">integer</span>
1615
+ </td>
1616
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1617
+ </tr>
1618
+ <tr>
1619
+ <td class="name"><code>value</code></td>
1620
+ <td class="type">
1621
+ <span class="param-type">number</span>
1622
+ </td>
1623
+ <td class="description last">The number value to be set for this parameter</td>
1624
+ </tr>
1625
+ </tbody>
1626
+ </table>
1627
+ <dl class="details">
1628
+ </dl>
1629
+ <h5>Throws:</h5>
1630
+ <ul>
1631
+ <li>
1632
+ <div class="param-desc">
1633
+ Throws an error on invalid parameters.
1634
+ </div>
1635
+ </li>
1636
+ <li>
1637
+ <div class="param-desc">
1638
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1639
+ </div>
1640
+ </li>
1641
+ </ul>
1642
+ </dd>
1643
+ <dt>
1644
+ <h4 class="name" id="setFloat"><span class="type-signature"></span>setFloat<span class="signature">(index, value)</span><span
1645
+ class="type-signature"></span></h4>
1646
+ </dt>
1647
+ <dd>
1648
+ <div class="description">
1649
+ setFloat sets a float parameter used for FLOAT parameter types
1650
+ </div>
1651
+ <h5>Parameters:</h5>
1652
+ <table class="params">
1653
+ <thead>
1654
+ <tr>
1655
+ <th>Name</th>
1656
+ <th>Type</th>
1657
+ <th class="last">Description</th>
1658
+ </tr>
1659
+ </thead>
1660
+ <tbody>
1661
+ <tr>
1662
+ <td class="name"><code>index</code></td>
1663
+ <td class="type">
1664
+ <span class="param-type">integer</span>
1665
+ </td>
1666
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1667
+ </tr>
1668
+ <tr>
1669
+ <td class="name"><code>value</code></td>
1670
+ <td class="type">
1671
+ <span class="param-type">number</span>
1672
+ </td>
1673
+ <td class="description last">The number value to be set for this parameter</td>
1674
+ </tr>
1675
+ </tbody>
1676
+ </table>
1677
+ <dl class="details">
1678
+ </dl>
1679
+ <h5>Throws:</h5>
1680
+ <ul>
1681
+ <li>
1682
+ <div class="param-desc">
1683
+ Throws an error on invalid parameters.
1684
+ </div>
1685
+ </li>
1686
+ <li>
1687
+ <div class="param-desc">
1688
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1689
+ </div>
1690
+ </li>
1691
+ </ul>
1692
+ </dd>
1693
+ <dt>
1694
+ <h4 class="name" id="setInteger"><span class="type-signature"></span>setInteger<span
1695
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1696
+ </dt>
1697
+ <dd>
1698
+ <div class="description">
1699
+ Sets an integer parameter used for TINYINT, SMALLINT, INT parameter types
1700
+ </div>
1701
+ <h5>Parameters:</h5>
1702
+ <table class="params">
1703
+ <thead>
1704
+ <tr>
1705
+ <th>Name</th>
1706
+ <th>Type</th>
1707
+ <th class="last">Description</th>
1708
+ </tr>
1709
+ </thead>
1710
+ <tbody>
1711
+ <tr>
1712
+ <td class="name"><code>index</code></td>
1713
+ <td class="type">
1714
+ <span class="param-type">integer</span>
1715
+ </td>
1716
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1717
+ </tr>
1718
+ <tr>
1719
+ <td class="name"><code>value</code></td>
1720
+ <td class="type">
1721
+ <span class="param-type">integer</span>
1722
+ </td>
1723
+ <td class="description last">The integer value to be set for this parameter</td>
1724
+ </tr>
1725
+ </tbody>
1726
+ </table>
1727
+ <dl class="details">
1728
+ </dl>
1729
+ <h5>Throws:</h5>
1730
+ <ul>
1731
+ <li>
1732
+ <div class="param-desc">
1733
+ Throws an error on invalid parameters.
1734
+ </div>
1735
+ </li>
1736
+ <li>
1737
+ <div class="param-desc">
1738
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1739
+ </div>
1740
+ </li>
1741
+ </ul>
1742
+ </dd>
1743
+ <dt>
1744
+ <h4 class="name" id="setNClob"><span class="type-signature"></span>setNClob<span class="signature">(index, value)</span><span
1745
+ class="type-signature"></span></h4>
1746
+ </dt>
1747
+ <dd>
1748
+ <div class="description">
1749
+ setNClob is used to specify the values for NCLOB parameter types.
1750
+ </div>
1751
+ <h5>Parameters:</h5>
1752
+ <table class="params">
1753
+ <thead>
1754
+ <tr>
1755
+ <th>Name</th>
1756
+ <th>Type</th>
1757
+ <th class="last">Description</th>
1758
+ </tr>
1759
+ </thead>
1760
+ <tbody>
1761
+ <tr>
1762
+ <td class="name"><code>index</code></td>
1763
+ <td class="type">
1764
+ <span class="param-type">integer</span>
1765
+ </td>
1766
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1767
+ </tr>
1768
+ <tr>
1769
+ <td class="name"><code>value</code></td>
1770
+ <td class="type">
1771
+ <span class="param-type">string</span>
1772
+ </td>
1773
+ <td class="description last">The string value to be set for this parameter.</td>
1774
+ </tr>
1775
+ </tbody>
1776
+ </table>
1777
+ <dl class="details">
1778
+ </dl>
1779
+ <h5>Throws:</h5>
1780
+ <ul>
1781
+ <li>
1782
+ <div class="param-desc">
1783
+ Throws an error on invalid parameters.
1784
+ </div>
1785
+ </li>
1786
+ <li>
1787
+ <div class="param-desc">
1788
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1789
+ </div>
1790
+ </li>
1791
+ </ul>
1792
+ </dd>
1793
+ <dt>
1794
+ <h4 class="name" id="setNString"><span class="type-signature"></span>setNString<span
1795
+ class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
1796
+ </dt>
1797
+ <dd>
1798
+ <div class="description">
1799
+ Sets a string parameter used for NCHAR, NVARCHAR parameter types, which should be used for
1800
+ strings containing Unicode characters. <br>
1801
+ This function converts the given Unicode string into a storable format. Make sure you use
1802
+ getNString to read the data.
1803
+ If you use getString on a column you wrote with setNString, an exception is thrown if the string
1804
+ contains Unicode characters larger than 0xFFFF.
1805
+ </div>
1806
+ <h5>Parameters:</h5>
1807
+ <table class="params">
1808
+ <thead>
1809
+ <tr>
1810
+ <th>Name</th>
1811
+ <th>Type</th>
1812
+ <th class="last">Description</th>
1813
+ </tr>
1814
+ </thead>
1815
+ <tbody>
1816
+ <tr>
1817
+ <td class="name"><code>columnIndex</code></td>
1818
+ <td class="type">
1819
+ <span class="param-type">integer</span>
1820
+ </td>
1821
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1822
+ </tr>
1823
+ <tr>
1824
+ <td class="name"><code>value</code></td>
1825
+ <td class="type">
1826
+ <span class="param-type">string</span>
1827
+ </td>
1828
+ <td class="description last">The string value to be set for this parameter</td>
1829
+ </tr>
1830
+ </tbody>
1831
+ </table>
1832
+ <dl class="details">
1833
+ </dl>
1834
+ <h5>Throws:</h5>
1835
+ <ul>
1836
+ <li>
1837
+ <div class="param-desc">
1838
+ Throws an error on invalid parameters.
1839
+ </div>
1840
+ </li>
1841
+ <li>
1842
+ <div class="param-desc">
1843
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1844
+ </div>
1845
+ </li>
1846
+ </ul>
1847
+ </dd>
1848
+ <dt>
1849
+ <h4 class="name" id="setNull"><span class="type-signature"></span>setNull<span class="signature">(index)</span><span
1850
+ class="type-signature"></span></h4>
1851
+ </dt>
1852
+ <dd>
1853
+ <div class="description">
1854
+ Sets a null parameter used for all parameter types
1855
+ </div>
1856
+ <h5>Parameters:</h5>
1857
+ <table class="params">
1858
+ <thead>
1859
+ <tr>
1860
+ <th>Name</th>
1861
+ <th>Type</th>
1862
+ <th class="last">Description</th>
1863
+ </tr>
1864
+ </thead>
1865
+ <tbody>
1866
+ <tr>
1867
+ <td class="name"><code>index</code></td>
1868
+ <td class="type">
1869
+ <span class="param-type">integer</span>
1870
+ </td>
1871
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1872
+ </tr>
1873
+ </tbody>
1874
+ </table>
1875
+ <dl class="details">
1876
+ </dl>
1877
+ <h5>Throws:</h5>
1878
+ <ul>
1879
+ <li>
1880
+ <div class="param-desc">
1881
+ Throws an error on invalid parameters.
1882
+ </div>
1883
+ </li>
1884
+ <li>
1885
+ <div class="param-desc">
1886
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1887
+ </div>
1888
+ </li>
1889
+ </ul>
1890
+ </dd>
1891
+ <dt>
1892
+ <h4 class="name" id="setReal"><span class="type-signature"></span>setReal<span class="signature">(index, value)</span><span
1893
+ class="type-signature"></span></h4>
1894
+ </dt>
1895
+ <dd>
1896
+ <div class="description">
1897
+ setReal sets a real parameter used for REAL parameter types
1898
+ </div>
1899
+ <h5>Parameters:</h5>
1900
+ <table class="params">
1901
+ <thead>
1902
+ <tr>
1903
+ <th>Name</th>
1904
+ <th>Type</th>
1905
+ <th class="last">Description</th>
1906
+ </tr>
1907
+ </thead>
1908
+ <tbody>
1909
+ <tr>
1910
+ <td class="name"><code>index</code></td>
1911
+ <td class="type">
1912
+ <span class="param-type">integer</span>
1913
+ </td>
1914
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1915
+ </tr>
1916
+ <tr>
1917
+ <td class="name"><code>value</code></td>
1918
+ <td class="type">
1919
+ <span class="param-type">number</span>
1920
+ </td>
1921
+ <td class="description last">The number value to be set for this parameter</td>
1922
+ </tr>
1923
+ </tbody>
1924
+ </table>
1925
+ <dl class="details">
1926
+ </dl>
1927
+ <h5>Throws:</h5>
1928
+ <ul>
1929
+ <li>
1930
+ <div class="param-desc">
1931
+ Throws an error on invalid parameters.
1932
+ </div>
1933
+ </li>
1934
+ <li>
1935
+ <div class="param-desc">
1936
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1937
+ </div>
1938
+ </li>
1939
+ </ul>
1940
+ </dd>
1941
+ <dt>
1942
+ <h4 class="name" id="setSmallInt"><span class="type-signature"></span>setSmallInt<span
1943
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
1944
+ </dt>
1945
+ <dd>
1946
+ <div class="description">
1947
+ Sets an integer parameter used for SMALLINT parameter types
1948
+ </div>
1949
+ <h5>Parameters:</h5>
1950
+ <table class="params">
1951
+ <thead>
1952
+ <tr>
1953
+ <th>Name</th>
1954
+ <th>Type</th>
1955
+ <th class="last">Description</th>
1956
+ </tr>
1957
+ </thead>
1958
+ <tbody>
1959
+ <tr>
1960
+ <td class="name"><code>index</code></td>
1961
+ <td class="type">
1962
+ <span class="param-type">integer</span>
1963
+ </td>
1964
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
1965
+ </tr>
1966
+ <tr>
1967
+ <td class="name"><code>value</code></td>
1968
+ <td class="type">
1969
+ <span class="param-type">integer</span>
1970
+ </td>
1971
+ <td class="description last">The integer value to be set for this parameter</td>
1972
+ </tr>
1973
+ </tbody>
1974
+ </table>
1975
+ <dl class="details">
1976
+ </dl>
1977
+ <h5>Throws:</h5>
1978
+ <ul>
1979
+ <li>
1980
+ <div class="param-desc">
1981
+ Throws an error on invalid parameters.
1982
+ </div>
1983
+ </li>
1984
+ <li>
1985
+ <div class="param-desc">
1986
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
1987
+ </div>
1988
+ </li>
1989
+ </ul>
1990
+ </dd>
1991
+ <dt>
1992
+ <h4 class="name" id="setString"><span class="type-signature"></span>setString<span
1993
+ class="signature">(columnIndex, value)</span><span class="type-signature"></span></h4>
1994
+ </dt>
1995
+ <dd>
1996
+ <div class="description">
1997
+ Sets a string parameter used for CHAR, VARCHAR column types; ASCII only, not suitable for
1998
+ strings containing Unicode characters <br>
1999
+ This function can be used to store strings containing ASCII and a subset of Unicode (namely BMP;
2000
+ the first 0xFFFF characters). <br>
2001
+ This function does not convert data; to improve performance, it stores data directly in the
2002
+ database. <br>
2003
+ Note that special characters (in Unicode SMP or SIP) can cause the read operation to fail.
2004
+ For more information see <a href="http://en.wikipedia.org/wiki/Plane_%2528Unicode%2529">Plane
2005
+ (Unicode)</a>. <br>
2006
+ If also need special Unicode characters or if you are not sure what this means it is safer to
2007
+ use setNString.
2008
+ </div>
2009
+ <h5>Parameters:</h5>
2010
+ <table class="params">
2011
+ <thead>
2012
+ <tr>
2013
+ <th>Name</th>
2014
+ <th>Type</th>
2015
+ <th class="last">Description</th>
2016
+ </tr>
2017
+ </thead>
2018
+ <tbody>
2019
+ <tr>
2020
+ <td class="name"><code>columnIndex</code></td>
2021
+ <td class="type">
2022
+ <span class="param-type">integer</span>
2023
+ </td>
2024
+ <td class="description last">The index of the parameter in the statement <b>starting from
2025
+ 1</b></td>
2026
+ </tr>
2027
+ <tr>
2028
+ <td class="name"><code>value</code></td>
2029
+ <td class="type">
2030
+ <span class="param-type">string</span>
2031
+ </td>
2032
+ <td class="description last">The string value to be set for this parameter</td>
2033
+ </tr>
2034
+ </tbody>
2035
+ </table>
2036
+ <dl class="details">
2037
+ </dl>
2038
+ <h5>Throws:</h5>
2039
+ <ul>
2040
+ <li>
2041
+ <div class="param-desc">
2042
+ Throws an error on invalid parameters.
2043
+ </div>
2044
+ </li>
2045
+ <li>
2046
+ <div class="param-desc">
2047
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
2048
+ </div>
2049
+ </li>
2050
+ </ul>
2051
+ </dd>
2052
+ <dt>
2053
+ <h4 class="name" id="setText"><span class="type-signature"></span>setText<span class="signature">(columnIndex, value)</span><span
2054
+ class="type-signature"></span></h4>
2055
+ </dt>
2056
+ <dd>
2057
+ <div class="description">
2058
+ setText is used to specify the values for TEXT column types.
2059
+ </div>
2060
+ <h5>Parameters:</h5>
2061
+ <table class="params">
2062
+ <thead>
2063
+ <tr>
2064
+ <th>Name</th>
2065
+ <th>Type</th>
2066
+ <th class="last">Description</th>
2067
+ </tr>
2068
+ </thead>
2069
+ <tbody>
2070
+ <tr>
2071
+ <td class="name"><code>columnIndex</code></td>
2072
+ <td class="type">
2073
+ <span class="param-type">integer</span>
2074
+ </td>
2075
+ <td class="description last">The index of the parameter in the prepared statement <b>starting
2076
+ from 1</b></td>
2077
+ </tr>
2078
+ <tr>
2079
+ <td class="name"><code>value</code></td>
2080
+ <td class="type">
2081
+ <span class="param-type">string</span>
2082
+ </td>
2083
+ <td class="description last">The string value to be set for this parameter</td>
2084
+ </tr>
2085
+ </tbody>
2086
+ </table>
2087
+ <dl class="details">
2088
+ </dl>
2089
+ <h5>Throws:</h5>
2090
+ <ul>
2091
+ <li>
2092
+ <div class="param-desc">
2093
+ Throws an error on invalid parameters.
2094
+ </div>
2095
+ </li>
2096
+ <li>
2097
+ <div class="param-desc">
2098
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
2099
+ </div>
2100
+ </li>
2101
+ </ul>
2102
+ </dd>
2103
+ <dt>
2104
+ <h4 class="name" id="setTime"><span class="type-signature"></span>setTime<span class="signature">(index, value, <span
2105
+ class="optional">format</span>)</span><span class="type-signature"></span></h4>
2106
+ </dt>
2107
+ <dd>
2108
+ <div class="description">
2109
+ Sets a Time parameter used for TIME parameter types (hour, min, sec) - milliseconds(mls) cannot
2110
+ be set
2111
+ </div>
2112
+ <h5>Parameters:</h5>
2113
+ <table class="params">
2114
+ <thead>
2115
+ <tr>
2116
+ <th>Name</th>
2117
+ <th>Type</th>
2118
+ <th>Argument</th>
2119
+ <th>Default</th>
2120
+ <th class="last">Description</th>
2121
+ </tr>
2122
+ </thead>
2123
+ <tbody>
2124
+ <tr>
2125
+ <td class="name"><code>index</code></td>
2126
+ <td class="type">
2127
+ <span class="param-type">integer</span>
2128
+ </td>
2129
+ <td class="attributes">
2130
+ </td>
2131
+ <td class="default">
2132
+ </td>
2133
+ <td class="description last">The index of the parameter, <b>starting from 1</b></td>
2134
+ </tr>
2135
+ <tr>
2136
+ <td class="name"><code>value</code></td>
2137
+ <td class="type">
2138
+ <span class="param-type">Date</span>
2139
+ |
2140
+ <span class="param-type">string</span>
2141
+ </td>
2142
+ <td class="attributes">
2143
+ </td>
2144
+ <td class="default">
2145
+ </td>
2146
+ <td class="description last">The Date value to be set for this parameter
2147
+ <ul>
2148
+ <li>HH:MI:SS.FF AM</li>
2149
+ <li>HH24:MI:SS.FF</li>
2150
+ <li>HH:MI:SS AM</li>
2151
+ <li>HH24:MI:SS</li>
2152
+ <li>HH:MI AM</li>
2153
+ <li>HH24:MI</li>
2154
+ <li>HH24:MI:SS.FF Z</li>
2155
+ <li>HH24:MI:SS Z</li>
2156
+ </ul>
2157
+ </td>
2158
+ </tr>
2159
+ <tr>
2160
+ <td class="name"><code>format</code></td>
2161
+ <td class="type">
2162
+ <span class="param-type">string</span>
2163
+ </td>
2164
+ <td class="attributes">
2165
+ &lt;optional><br>
2166
+ </td>
2167
+ <td class="default">
2168
+ ""
2169
+ </td>
2170
+ <td class="description last">One of the following formats:<br/></td>
2171
+ </tr>
2172
+ </tbody>
2173
+ </table>
2174
+ <dl class="details">
2175
+ </dl>
2176
+ <h5>Throws:</h5>
2177
+ <ul>
2178
+ <li>
2179
+ <div class="param-desc">
2180
+ Throws an error on invalid parameters.
2181
+ </div>
2182
+ </li>
2183
+ <li>
2184
+ <div class="param-desc">
2185
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
2186
+ </div>
2187
+ </li>
2188
+ </ul>
2189
+ </dd>
2190
+ <dt>
2191
+ <h4 class="name" id="setTimestamp"><span class="type-signature"></span>setTimestamp<span
2192
+ class="signature">(index, value, <span class="optional">format</span>)</span><span
2193
+ class="type-signature"></span></h4>
2194
+ </dt>
2195
+ <dd>
2196
+ <div class="description">
2197
+ Sets a Timestamp parameter used for TIMESTAMP parameter types
2198
+ </div>
2199
+ <h5>Parameters:</h5>
2200
+ <table class="params">
2201
+ <thead>
2202
+ <tr>
2203
+ <th>Name</th>
2204
+ <th>Type</th>
2205
+ <th>Argument</th>
2206
+ <th>Default</th>
2207
+ <th class="last">Description</th>
2208
+ </tr>
2209
+ </thead>
2210
+ <tbody>
2211
+ <tr>
2212
+ <td class="name"><code>index</code></td>
2213
+ <td class="type">
2214
+ <span class="param-type">integer</span>
2215
+ </td>
2216
+ <td class="attributes">
2217
+ </td>
2218
+ <td class="default">
2219
+ </td>
2220
+ <td class="description last">The index of the parameter <b>starting from 1</b></td>
2221
+ </tr>
2222
+ <tr>
2223
+ <td class="name"><code>value</code></td>
2224
+ <td class="type">
2225
+ <span class="param-type">Date</span>
2226
+ |
2227
+ <span class="param-type">string</span>
2228
+ </td>
2229
+ <td class="attributes">
2230
+ </td>
2231
+ <td class="default">
2232
+ </td>
2233
+ <td class="description last">The timestamp value to be set for this parameter
2234
+ The default format is: <b>date</b> <b>separator</b> <b>time</b>, for example, <br>
2235
+ 2001-01-02 01:02:03.123, where <b>date</b> is the format to use for the date value <br>
2236
+ (see setDate), <b>separator</b> can be a space, a comma, or the letter T, and <br>
2237
+ <b>time</b> is the format to use for the time value (see setTime).<br>
2238
+ Examples:<br>
2239
+ 2001-01-02 01:02:03.123<br>
2240
+ 2001-01-02,01:02:03.123<br>
2241
+ 2001-01-02T01:02:03.123<br>
2242
+ <i>st.setTimestamp(4,"01.02.2003 01:02:03.123", "DD.MM.YYYY HH:MI:SS.FF");</i></td>
2243
+ </tr>
2244
+ <tr>
2245
+ <td class="name"><code>format</code></td>
2246
+ <td class="type">
2247
+ <span class="param-type">string</span>
2248
+ </td>
2249
+ <td class="attributes">
2250
+ &lt;optional><br>
2251
+ </td>
2252
+ <td class="default">
2253
+ ""
2254
+ </td>
2255
+ <td class="description last">Optional, see also setDate and setTime.</td>
2256
+ </tr>
2257
+ </tbody>
2258
+ </table>
2259
+ <dl class="details">
2260
+ </dl>
2261
+ <h5>Throws:</h5>
2262
+ <ul>
2263
+ <li>
2264
+ <div class="param-desc">
2265
+ Throws an error on invalid parameters.
2266
+ </div>
2267
+ </li>
2268
+ <li>
2269
+ <div class="param-desc">
2270
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
2271
+ </div>
2272
+ </li>
2273
+ </ul>
2274
+ </dd>
2275
+ <dt>
2276
+ <h4 class="name" id="setTinyInt"><span class="type-signature"></span>setTinyInt<span
2277
+ class="signature">(index, value)</span><span class="type-signature"></span></h4>
2278
+ </dt>
2279
+ <dd>
2280
+ <div class="description">
2281
+ Sets an integer parameter used for TINYINT parameter types
2282
+ </div>
2283
+ <h5>Parameters:</h5>
2284
+ <table class="params">
2285
+ <thead>
2286
+ <tr>
2287
+ <th>Name</th>
2288
+ <th>Type</th>
2289
+ <th class="last">Description</th>
2290
+ </tr>
2291
+ </thead>
2292
+ <tbody>
2293
+ <tr>
2294
+ <td class="name"><code>index</code></td>
2295
+ <td class="type">
2296
+ <span class="param-type">integer</span>
2297
+ </td>
2298
+ <td class="description last">The index of the parameter, <b>starting from 1</b></td>
2299
+ </tr>
2300
+ <tr>
2301
+ <td class="name"><code>value</code></td>
2302
+ <td class="type">
2303
+ <span class="param-type">integer</span>
2304
+ </td>
2305
+ <td class="description last">The integer value to be set for this parameter (unsigned char:
2306
+ min 0, max 255)
2307
+ </td>
2308
+ </tr>
2309
+ </tbody>
2310
+ </table>
2311
+ <dl class="details">
2312
+ </dl>
2313
+ <h5>Throws:</h5>
2314
+ <ul>
2315
+ <li>
2316
+ <div class="param-desc">
2317
+ Throws an error on invalid parameters.
2318
+ </div>
2319
+ </li>
2320
+ <li>
2321
+ <div class="param-desc">
2322
+ <span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
2323
+ </div>
2324
+ </li>
2325
+ </ul>
2326
+ </dd>
2327
+ </dl>
2328
+ </article>
2329
+ </section>
2330
+ </div>
2331
+ <nav>
2332
+ <h2><a href="index.html">Index</a></h2>
2333
+ <h3>Classes</h3>
2334
+ <table>
2335
+ <tr>
2336
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
2337
+ <td class="oblique">$.security</td>
2338
+ </tr>
2339
+ <tr>
2340
+ <td><a href="$.Application.html">Application</a></td>
2341
+ <td class="oblique">$</td>
2342
+ </tr>
2343
+ <tr>
2344
+ <td><a href="$.web.Body.html">Body</a></td>
2345
+ <td class="oblique">$.web</td>
2346
+ </tr>
2347
+ <tr>
2348
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
2349
+ <td class="oblique">$.db</td>
2350
+ </tr>
2351
+ <tr>
2352
+ <td><a href="$.net.http.Client.html">Client</a></td>
2353
+ <td class="oblique">$.net.http</td>
2354
+ </tr>
2355
+ <tr>
2356
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
2357
+ <td class="oblique">$.hdb</td>
2358
+ </tr>
2359
+ <tr>
2360
+ <td><a href="$.db.Connection.html">Connection</a></td>
2361
+ <td class="oblique">$.db</td>
2362
+ </tr>
2363
+ <tr>
2364
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
2365
+ <td class="oblique">$.hdb</td>
2366
+ </tr>
2367
+ <tr>
2368
+ <td><a href="$.net.Destination.html">Destination</a></td>
2369
+ <td class="oblique">$.net</td>
2370
+ </tr>
2371
+ <tr>
2372
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
2373
+ <td class="oblique">$.net.http</td>
2374
+ </tr>
2375
+ <tr>
2376
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
2377
+ <td class="oblique">$.web</td>
2378
+ </tr>
2379
+ <tr>
2380
+ <td><a href="$.jobs.Job.html">Job</a></td>
2381
+ <td class="oblique">$.jobs</td>
2382
+ </tr>
2383
+ <tr>
2384
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
2385
+ <td class="oblique">$.jobs</td>
2386
+ </tr>
2387
+ <tr>
2388
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
2389
+ <td class="oblique">$.jobs</td>
2390
+ </tr>
2391
+ <tr>
2392
+ <td><a href="$.net.Mail.html">Mail</a></td>
2393
+ <td class="oblique">$.net</td>
2394
+ </tr>
2395
+ <tr>
2396
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
2397
+ <td class="oblique">$.db</td>
2398
+ </tr>
2399
+ <tr>
2400
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
2401
+ <td class="oblique">$.net.Mail</td>
2402
+ </tr>
2403
+ <tr>
2404
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
2405
+ <td class="oblique">$.db</td>
2406
+ </tr>
2407
+ <tr>
2408
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
2409
+ <td class="oblique">$.hdb</td>
2410
+ </tr>
2411
+ <tr>
2412
+ <td><a href="$.net.http.Request.html">Request</a></td>
2413
+ <td class="oblique">$.net.http</td>
2414
+ </tr>
2415
+ <tr>
2416
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
2417
+ <td class="oblique">$.db</td>
2418
+ </tr>
2419
+ <tr>
2420
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
2421
+ <td class="oblique">$.hdb</td>
2422
+ </tr>
2423
+ <tr>
2424
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
2425
+ <td class="oblique">$.hdb</td>
2426
+ </tr>
2427
+ <tr>
2428
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
2429
+ <td class="oblique">$.db</td>
2430
+ </tr>
2431
+ <tr>
2432
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
2433
+ <td class="oblique">$.hdb</td>
2434
+ </tr>
2435
+ <tr>
2436
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
2437
+ <td class="oblique">$.util</td>
2438
+ </tr>
2439
+ <tr>
2440
+ <td><a href="$.Session.html">Session</a></td>
2441
+ <td class="oblique">$</td>
2442
+ </tr>
2443
+ <tr>
2444
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
2445
+ <td class="oblique">$.text.analysis</td>
2446
+ </tr>
2447
+ <tr>
2448
+ <td><a href="$.text.mining.Session.html">Session</a></td>
2449
+ <td class="oblique">$.text.mining</td>
2450
+ </tr>
2451
+ <tr>
2452
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
2453
+ <td class="oblique">$.net</td>
2454
+ </tr>
2455
+ <tr>
2456
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
2457
+ <td class="oblique">$.db</td>
2458
+ </tr>
2459
+ <tr>
2460
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
2461
+ <td class="oblique">$.hdb</td>
2462
+ </tr>
2463
+ <tr>
2464
+ <td><a href="$.security.Store.html">Store</a></td>
2465
+ <td class="oblique">$.security</td>
2466
+ </tr>
2467
+ <tr>
2468
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
2469
+ <td class="oblique">$.web</td>
2470
+ </tr>
2471
+ <tr>
2472
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
2473
+ <td class="oblique">$.web</td>
2474
+ </tr>
2475
+ <tr>
2476
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
2477
+ <td class="oblique">$.web</td>
2478
+ </tr>
2479
+ <tr>
2480
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
2481
+ <td class="oblique">$.web</td>
2482
+ </tr>
2483
+ <tr>
2484
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
2485
+ <td class="oblique">$.web</td>
2486
+ </tr>
2487
+ <tr>
2488
+ <td><a href="$.util.Zip.html">Zip</a></td>
2489
+ <td class="oblique">$.util</td>
2490
+ </tr>
2491
+ </table>
2492
+ <h3>Namespaces</h3>
2493
+ <ul>
2494
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
2495
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
2496
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
2497
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
2498
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
2499
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
2500
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
2501
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
2502
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
2503
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
2504
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
2505
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
2506
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
2507
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
2508
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
2509
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
2510
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
2511
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
2512
+ </ul>
2513
+ </nav>
2514
+ <br clear="both">
2515
+ <footer>
2516
+ <a href="Copyright-SAP.html">Copyright</a>
2517
+ &
2518
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
2519
+ </footer>
2520
+ <script>prettyPrint();</script>
2521
+ <script src="scripts/linenumber.js"></script>
2522
+ </body>
2523
+
2524
+ </html>