@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,557 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Namespace: hdb</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="$.hdb.html">
16
+ </head>
17
+ <body>
18
+ <div id="main">
19
+ <h1 class="page-title">Namespace: hdb</h1>
20
+ <section>
21
+ <header>
22
+ <h2>
23
+ <span class="ancestors"><a href="$.html">$</a>.</span>
24
+ hdb
25
+ </h2>
26
+ </header>
27
+ <article>
28
+ <div class="container-overview">
29
+ <div class="description">This namespace provides means for seamless HANA database access. It is intended
30
+ to be a replacement of the older <a href="$.db.html">$.db</a> namespace.
31
+ Fundamental goal of the new interface is to ensure simplicity, convenience, completeness and
32
+ performance.
33
+ </div>
34
+ <dl class="details">
35
+ </dl>
36
+ </div>
37
+ <h3 class="subsection-title">Classes</h3>
38
+ <dl>
39
+ <dt><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></dt>
40
+ <dd></dd>
41
+ <dt><a href="$.hdb.Connection.html">Connection</a></dt>
42
+ <dd></dd>
43
+ <dt><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></dt>
44
+ <dd></dd>
45
+ <dt><a href="$.hdb.ResultSet.html">ResultSet</a></dt>
46
+ <dd></dd>
47
+ <dt><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></dt>
48
+ <dd></dd>
49
+ <dt><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></dt>
50
+ <dd></dd>
51
+ <dt><a href="$.hdb.SQLException.html">SQLException</a></dt>
52
+ <dd></dd>
53
+ </dl>
54
+ <h3 class="subsection-title">Members</h3>
55
+ <dl>
56
+ <dt>
57
+ <h4 class="name" id="isolation"><span class="type-signature">&lt;static> </span>isolation<span
58
+ class="type-signature"></span></h4>
59
+ </dt>
60
+ <dd>
61
+ <div class="description">
62
+ Constants that represent the isolation levels for a transaction
63
+ </div>
64
+ <dl class="details">
65
+ <h5 class="subsection-title">Properties:</h5>
66
+ <dl>
67
+ <table class="props">
68
+ <thead>
69
+ <tr>
70
+ <th>Name</th>
71
+ <th>Type</th>
72
+ <th>Default</th>
73
+ </tr>
74
+ </thead>
75
+ <tbody>
76
+ <tr>
77
+ <td class="name"><code>READ_COMMITTED</code></td>
78
+ <td class="type">
79
+ <span class="param-type">number</span>
80
+ </td>
81
+ <td class="default">
82
+ 2
83
+ </td>
84
+ </tr>
85
+ <tr>
86
+ <td class="name"><code>REPEATABLE_READ</code></td>
87
+ <td class="type">
88
+ <span class="param-type">number</span>
89
+ </td>
90
+ <td class="default">
91
+ 4
92
+ </td>
93
+ </tr>
94
+ <tr>
95
+ <td class="name"><code>SERIALIZABLE</code></td>
96
+ <td class="type">
97
+ <span class="param-type">number</span>
98
+ </td>
99
+ <td class="default">
100
+ 8
101
+ </td>
102
+ </tr>
103
+ </tbody>
104
+ </table>
105
+ </dl>
106
+ </dl>
107
+ </dd>
108
+ <dt>
109
+ <h4 class="name" id="types"><span class="type-signature">&lt;static> </span>types<span
110
+ class="type-signature"></span></h4>
111
+ </dt>
112
+ <dd>
113
+ <div class="description">
114
+ Set of constants of the database column types. The JavaScript Type column below describes the
115
+ implicit Database to JavaScript type convertions performed by the $.hdb API<br><br>
116
+ <table class="props">
117
+ <thead>
118
+ <tr>
119
+ <th>Name</th>
120
+ <th>Value</th>
121
+ <th>JavaScript Type</th>
122
+ <th>Comment</th>
123
+ </tr>
124
+ </thead>
125
+ <tbody>
126
+ <tr>
127
+ <td><code class="name">TINYINT</code></td>
128
+ <td>1</td>
129
+ <td>Number</td>
130
+ <td></td>
131
+ </tr>
132
+ <tr>
133
+ <td><code class="name">SMALLINT</code></td>
134
+ <td>2</td>
135
+ <td>Number</td>
136
+ <td></td>
137
+ </tr>
138
+ <tr>
139
+ <td><code class="name">INTEGER</code></td>
140
+ <td>3</td>
141
+ <td>Number</td>
142
+ <td></td>
143
+ </tr>
144
+ <tr>
145
+ <td><code class="name">BIGINT</code></td>
146
+ <td>4</td>
147
+ <td>ctypes.Int64</td>
148
+ <td></td>
149
+ </tr>
150
+ <tr>
151
+ <td><code class="name">DECIMAL</code></td>
152
+ <td>5</td>
153
+ <td>String</td>
154
+ <td></td>
155
+ </tr>
156
+ <tr>
157
+ <td><code class="name">REAL</code></td>
158
+ <td>6</td>
159
+ <td>Number</td>
160
+ <td></td>
161
+ </tr>
162
+ <tr>
163
+ <td><code class="name">DOUBLE</code></td>
164
+ <td>7</td>
165
+ <td>Number</td>
166
+ <td></td>
167
+ </tr>
168
+ <tr>
169
+ <td><code class="name">CHAR</code></td>
170
+ <td>8</td>
171
+ <td>String</td>
172
+ <td></td>
173
+ </tr>
174
+ <tr>
175
+ <td><code class="name">VARCHAR</code></td>
176
+ <td>9</td>
177
+ <td>String</td>
178
+ <td></td>
179
+ </tr>
180
+ <tr>
181
+ <td><code class="name">NCHAR</code></td>
182
+ <td>10</td>
183
+ <td>String</td>
184
+ <td></td>
185
+ </tr>
186
+ <tr>
187
+ <td><code class="name">NVARCHAR</code></td>
188
+ <td>11</td>
189
+ <td>String</td>
190
+ <td></td>
191
+ </tr>
192
+ <tr>
193
+ <td><code class="name">BINARY</code></td>
194
+ <td>12</td>
195
+ <td>ArrayBuffer</td>
196
+ <td></td>
197
+ </tr>
198
+ <tr>
199
+ <td><code class="name">VARBINARY</code></td>
200
+ <td>13</td>
201
+ <td>ArrayBuffer</td>
202
+ <td></td>
203
+ </tr>
204
+ <tr>
205
+ <td><code class="name">DATE</code></td>
206
+ <td>14</td>
207
+ <td>Date</td>
208
+ <td></td>
209
+ </tr>
210
+ <tr>
211
+ <td><code class="name">TIME</code></td>
212
+ <td>15</td>
213
+ <td>Date</td>
214
+ <td></td>
215
+ </tr>
216
+ <tr>
217
+ <td><code class="name">TIMESTAMP</code></td>
218
+ <td>16</td>
219
+ <td>Date</td>
220
+ <td></td>
221
+ </tr>
222
+ <tr>
223
+ <td><code class="name">CLOB</code></td>
224
+ <td>25</td>
225
+ <td>String</td>
226
+ <td></td>
227
+ </tr>
228
+ <tr>
229
+ <td><code class="name">NCLOB</code></td>
230
+ <td>26</td>
231
+ <td>String</td>
232
+ <td></td>
233
+ </tr>
234
+ <tr>
235
+ <td><code class="name">BLOB</code></td>
236
+ <td>27</td>
237
+ <td>ArrayBuffer</td>
238
+ <td></td>
239
+ </tr>
240
+ <tr>
241
+ <td><code class="name">SMALLDECIMAL</code></td>
242
+ <td>47</td>
243
+ <td>String</td>
244
+ <td></td>
245
+ </tr>
246
+ <tr>
247
+ <td><code class="name">TEXT</code></td>
248
+ <td>51</td>
249
+ <td>ArrayBuffer</td>
250
+ <td></td>
251
+ </tr>
252
+ <tr>
253
+ <td><code class="name">SHORTTEXT</code></td>
254
+ <td>52</td>
255
+ <td>String</td>
256
+ <td></td>
257
+ </tr>
258
+ <tr>
259
+ <td><code class="name">ALPHANUM</code></td>
260
+ <td>55</td>
261
+ <td>String</td>
262
+ <td></td>
263
+ </tr>
264
+ <tr>
265
+ <td><code class="name">SECONDDATE</code></td>
266
+ <td>62</td>
267
+ <td>Date</td>
268
+ <td></td>
269
+ </tr>
270
+ <tr>
271
+ <td><code class="name">ST_GEOMETRY</code></td>
272
+ <td>74</td>
273
+ <td>ArrayBuffer</td>
274
+ <td>consider using SQL's ST_asGeoJSON() on ST_GEOMETRY columns for easy consumption</td>
275
+ </tr>
276
+ <tr>
277
+ <td><code class="name">ST_POINT</code></td>
278
+ <td>75</td>
279
+ <td>ArrayBuffer</td>
280
+ <td>consider using SQL's ST_asGeoJSON() on ST_POINT columns for easy consumption</td>
281
+ </tr>
282
+ </tbody>
283
+ </table>
284
+ </div>
285
+ <dl class="details">
286
+ </dl>
287
+ </dd>
288
+ </dl>
289
+ <h3 class="subsection-title">Methods</h3>
290
+ <dl>
291
+ <dt>
292
+ <h4 class="name" id="getConnection"><span
293
+ class="type-signature">&lt;static> async </span>getConnection<span class="signature">(<span
294
+ class="optional">options</span>)</span><span class="type-signature"> &rarr; {<a
295
+ href="$.hdb.Connection.html">$.hdb.Connection</a>}</span></h4>
296
+ </dt>
297
+ <dd>
298
+ <div class="description">
299
+ Returns a database connection.
300
+ </div>
301
+ <h5>Parameters:</h5>
302
+ <table class="params">
303
+ <thead>
304
+ <tr>
305
+ <th>Name</th>
306
+ <th>Type</th>
307
+ <th>Argument</th>
308
+ <th class="last">Description</th>
309
+ </tr>
310
+ </thead>
311
+ <tbody>
312
+ <tr>
313
+ <td class="name"><code>options</code></td>
314
+ <td class="type">
315
+ <span class="param-type">object</span>
316
+ </td>
317
+ <td class="attributes">
318
+ &lt;optional><br>
319
+ </td>
320
+ <td class="description last">object specifying the options:
321
+ <ul>
322
+ <li>isolationLevel - transaction isolation level. Default is
323
+ $.hdb.isolation.READ_COMMITTED
324
+ </li>
325
+ <li>sqlcc - absolute or relative path to xssqlcc file</li>
326
+ <li>pool - boolean option useful to require pooled connection in order to maximize
327
+ performance. Please note that connection pooling works only in combination with
328
+ xssqlcc.
329
+ </li>
330
+ <li>treatDateAsUTC - if true, all Date objects passed to/returned by the API will be
331
+ treated as UTC(milliseconds since epoch). If false, Date objects are directly
332
+ processed in local system time.
333
+ </li>
334
+ </ul>
335
+ </td>
336
+ </tr>
337
+ </tbody>
338
+ </table>
339
+ <dl class="details">
340
+ </dl>
341
+ <h5>Returns:</h5>
342
+ <div class="param-desc">
343
+ Connection - The internal connection to the database with the user of the current session.
344
+ </div>
345
+ <dl>
346
+ <dt>
347
+ Type
348
+ </dt>
349
+ <dd>
350
+ <span class="param-type"><a href="$.hdb.Connection.html">$.hdb.Connection</a></span>
351
+ </dd>
352
+ </dl>
353
+ <h5>Example</h5>
354
+ <pre class="prettyprint"><code>var connection = <b>await</b> $.hdb.getConnection({"isolationLevel": $.hdb.isolation.REPEATABLE_READ, "sqlcc": "package::mysqlccfile"});
355
+
356
+ // Get connection from automatically created sqlcc pool
357
+ var connection = <b>await</b> $.hdb.getConnection({"sqlcc": "package::mysqlccfile", "pool": true});</code></pre>
358
+ </dd>
359
+ </dl>
360
+ </article>
361
+ </section>
362
+ </div>
363
+ <nav>
364
+ <h2><a href="index.html">Index</a></h2>
365
+ <h3>Classes</h3>
366
+ <table>
367
+ <tr>
368
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
369
+ <td class="oblique">$.security</td>
370
+ </tr>
371
+ <tr>
372
+ <td><a href="$.Application.html">Application</a></td>
373
+ <td class="oblique">$</td>
374
+ </tr>
375
+ <tr>
376
+ <td><a href="$.web.Body.html">Body</a></td>
377
+ <td class="oblique">$.web</td>
378
+ </tr>
379
+ <tr>
380
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
381
+ <td class="oblique">$.db</td>
382
+ </tr>
383
+ <tr>
384
+ <td><a href="$.net.http.Client.html">Client</a></td>
385
+ <td class="oblique">$.net.http</td>
386
+ </tr>
387
+ <tr>
388
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
389
+ <td class="oblique">$.hdb</td>
390
+ </tr>
391
+ <tr>
392
+ <td><a href="$.db.Connection.html">Connection</a></td>
393
+ <td class="oblique">$.db</td>
394
+ </tr>
395
+ <tr>
396
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
397
+ <td class="oblique">$.hdb</td>
398
+ </tr>
399
+ <tr>
400
+ <td><a href="$.net.Destination.html">Destination</a></td>
401
+ <td class="oblique">$.net</td>
402
+ </tr>
403
+ <tr>
404
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
405
+ <td class="oblique">$.net.http</td>
406
+ </tr>
407
+ <tr>
408
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
409
+ <td class="oblique">$.web</td>
410
+ </tr>
411
+ <tr>
412
+ <td><a href="$.jobs.Job.html">Job</a></td>
413
+ <td class="oblique">$.jobs</td>
414
+ </tr>
415
+ <tr>
416
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
417
+ <td class="oblique">$.jobs</td>
418
+ </tr>
419
+ <tr>
420
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
421
+ <td class="oblique">$.jobs</td>
422
+ </tr>
423
+ <tr>
424
+ <td><a href="$.net.Mail.html">Mail</a></td>
425
+ <td class="oblique">$.net</td>
426
+ </tr>
427
+ <tr>
428
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
429
+ <td class="oblique">$.db</td>
430
+ </tr>
431
+ <tr>
432
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
433
+ <td class="oblique">$.net.Mail</td>
434
+ </tr>
435
+ <tr>
436
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
437
+ <td class="oblique">$.db</td>
438
+ </tr>
439
+ <tr>
440
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
441
+ <td class="oblique">$.hdb</td>
442
+ </tr>
443
+ <tr>
444
+ <td><a href="$.net.http.Request.html">Request</a></td>
445
+ <td class="oblique">$.net.http</td>
446
+ </tr>
447
+ <tr>
448
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
449
+ <td class="oblique">$.db</td>
450
+ </tr>
451
+ <tr>
452
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
453
+ <td class="oblique">$.hdb</td>
454
+ </tr>
455
+ <tr>
456
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
457
+ <td class="oblique">$.hdb</td>
458
+ </tr>
459
+ <tr>
460
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
461
+ <td class="oblique">$.db</td>
462
+ </tr>
463
+ <tr>
464
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
465
+ <td class="oblique">$.hdb</td>
466
+ </tr>
467
+ <tr>
468
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
469
+ <td class="oblique">$.util</td>
470
+ </tr>
471
+ <tr>
472
+ <td><a href="$.Session.html">Session</a></td>
473
+ <td class="oblique">$</td>
474
+ </tr>
475
+ <tr>
476
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
477
+ <td class="oblique">$.text.analysis</td>
478
+ </tr>
479
+ <tr>
480
+ <td><a href="$.text.mining.Session.html">Session</a></td>
481
+ <td class="oblique">$.text.mining</td>
482
+ </tr>
483
+ <tr>
484
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
485
+ <td class="oblique">$.net</td>
486
+ </tr>
487
+ <tr>
488
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
489
+ <td class="oblique">$.db</td>
490
+ </tr>
491
+ <tr>
492
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
493
+ <td class="oblique">$.hdb</td>
494
+ </tr>
495
+ <tr>
496
+ <td><a href="$.security.Store.html">Store</a></td>
497
+ <td class="oblique">$.security</td>
498
+ </tr>
499
+ <tr>
500
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
501
+ <td class="oblique">$.web</td>
502
+ </tr>
503
+ <tr>
504
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
505
+ <td class="oblique">$.web</td>
506
+ </tr>
507
+ <tr>
508
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
509
+ <td class="oblique">$.web</td>
510
+ </tr>
511
+ <tr>
512
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
513
+ <td class="oblique">$.web</td>
514
+ </tr>
515
+ <tr>
516
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
517
+ <td class="oblique">$.web</td>
518
+ </tr>
519
+ <tr>
520
+ <td><a href="$.util.Zip.html">Zip</a></td>
521
+ <td class="oblique">$.util</td>
522
+ </tr>
523
+ </table>
524
+ <h3>Namespaces</h3>
525
+ <ul>
526
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
527
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
528
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
529
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
530
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
531
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
532
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
533
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
534
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
535
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
536
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
537
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
538
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
539
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
540
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
541
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
542
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
543
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
544
+ </ul>
545
+ </nav>
546
+ <br clear="both">
547
+ <footer>
548
+ <a href="Copyright-SAP.html">Copyright</a>
549
+ &
550
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
551
+ </footer>
552
+ <script>prettyPrint();</script>
553
+ <script src="scripts/linenumber.js"></script>
554
+
555
+ </body>
556
+
557
+ </html>