@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,438 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <title>JSDoc: Class: ColumnMetadata</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.ColumnMetadata.html">
16
+ </head>
17
+ <body>
18
+ <div id="main">
19
+ <h1 class="page-title">Class: ColumnMetadata</h1>
20
+ <section>
21
+ <header>
22
+ <h2>
23
+ <span class="ancestors"><a href="$.html">$</a><a href="$.hdb.html">.hdb</a>.</span>
24
+ ColumnMetadata
25
+ </h2>
26
+ <div class="class-description">$.hdb.ColumnMetadata represents the metadata of a single column from a result
27
+ set.
28
+ </div>
29
+ </header>
30
+ <article>
31
+ <div class="container-overview">
32
+ <dt>
33
+ <h4 class="name" id="ColumnMetadata"><span class="type-signature"></span>new ColumnMetadata<span
34
+ class="signature">()</span><span class="type-signature"></span></h4>
35
+ </dt>
36
+ <dd>
37
+ <dl class="details">
38
+ </dl>
39
+ <h5>Example</h5>
40
+ <pre class="prettyprint"><code>var conn = <b>await </b>$.hdb.getConnection();
41
+ <b>await </b>conn.executeUpdate('CREATE SCHEMA EXAMPLE');
42
+ <b>await </b>conn.executeUpdate('CREATE TABLE EXAMPLE.TEST_METADATA( TINT TINYINT NOT NULL, FLOAT FLOAT )');
43
+ <b>await </b>conn.executeUpdate('INSERT INTO EXAMPLE.TEST_METADATA VALUES(12, 34.5)');
44
+ <b>await </b>conn.commit();
45
+ var resultSet = <b>await </b>conn.executeQuery('SELECT * FROM EXAMPLE.TEST_METADATA');
46
+ var columnsMetadata = resultSet.metadata.columns;
47
+ var columnCount = columnsMetadata.length;
48
+ var body = "";
49
+ for(var i = 0; i < columnCount; i++) {
50
+ body += "Column " + (i + 1) + " metadata:\n";
51
+ body += " Catalog name: " + columnsMetadata[i].catalogName + "\n";
52
+ body += " Display size: " + columnsMetadata[i].displaySize + "\n";
53
+ body += " Label: " + columnsMetadata[i].label + "\n";
54
+ body += " Name: " + columnsMetadata[i].name + "\n";
55
+ body += " Type: " + columnsMetadata[i].type + "\n";
56
+ body += " Type name: " + columnsMetadata[i].typeName + "\n";
57
+ body += " Precision: " + columnsMetadata[i].precision + "\n";
58
+ body += " Scale: " + columnsMetadata[i].scale + "\n";
59
+ body += " Table name: " + columnsMetadata[i].tableName + "\n";
60
+ body += " Is nullable: " + (columnsMetadata[i].isNullable ? "true" : "false") + "\n\n";
61
+ }
62
+
63
+ <b>await </b>conn.executeUpdate('DROP TABLE EXAMPLE.TEST_METADATA');
64
+ <b>await </b>conn.executeUpdate('DROP SCHEMA EXAMPLE');
65
+ $.response.contentType = "text/plain";
66
+ <b>await </b>$.response.setBody(body);</code></pre>
67
+ </dd>
68
+ </div>
69
+ <h3 class="subsection-title">Members</h3>
70
+ <dl>
71
+ <dt>
72
+ <h4 class="name" id="catalogName"><span class="type-signature"></span>catalogName<span
73
+ class="type-signature"> :string</span></h4>
74
+ </dt>
75
+ <dd>
76
+ <div class="description">
77
+ Returns the column's catalog name.
78
+ </div>
79
+ <h5>Type:</h5>
80
+ <ul>
81
+ <li>
82
+ <span class="param-type">string</span>
83
+ </li>
84
+ </ul>
85
+ <dl class="details">
86
+ </dl>
87
+ </dd>
88
+ <dt>
89
+ <h4 class="name" id="displaySize"><span class="type-signature"></span>displaySize<span
90
+ class="type-signature"> :number</span></h4>
91
+ </dt>
92
+ <dd>
93
+ <div class="description">
94
+ Returns the column's display size.
95
+ </div>
96
+ <h5>Type:</h5>
97
+ <ul>
98
+ <li>
99
+ <span class="param-type">number</span>
100
+ </li>
101
+ </ul>
102
+ <dl class="details">
103
+ </dl>
104
+ </dd>
105
+ <dt>
106
+ <h4 class="name" id="isNullable"><span class="type-signature"></span>isNullable<span
107
+ class="type-signature"> :number</span></h4>
108
+ </dt>
109
+ <dd>
110
+ <div class="description">
111
+ Returns true if the column is nullable and false otherwise.
112
+ </div>
113
+ <h5>Type:</h5>
114
+ <ul>
115
+ <li>
116
+ <span class="param-type">number</span>
117
+ </li>
118
+ </ul>
119
+ <dl class="details">
120
+ </dl>
121
+ </dd>
122
+ <dt>
123
+ <h4 class="name" id="label"><span class="type-signature"></span>label<span class="type-signature"> :string</span>
124
+ </h4>
125
+ </dt>
126
+ <dd>
127
+ <div class="description">
128
+ Returns the column's label.
129
+ </div>
130
+ <h5>Type:</h5>
131
+ <ul>
132
+ <li>
133
+ <span class="param-type">string</span>
134
+ </li>
135
+ </ul>
136
+ <dl class="details">
137
+ </dl>
138
+ </dd>
139
+ <dt>
140
+ <h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span>
141
+ </h4>
142
+ </dt>
143
+ <dd>
144
+ <div class="description">
145
+ Returns the column's name.
146
+ </div>
147
+ <h5>Type:</h5>
148
+ <ul>
149
+ <li>
150
+ <span class="param-type">string</span>
151
+ </li>
152
+ </ul>
153
+ <dl class="details">
154
+ </dl>
155
+ </dd>
156
+ <dt>
157
+ <h4 class="name" id="precision"><span class="type-signature"></span>precision<span
158
+ class="type-signature"> :number</span></h4>
159
+ </dt>
160
+ <dd>
161
+ <div class="description">
162
+ Returns the column's precision.
163
+ </div>
164
+ <h5>Type:</h5>
165
+ <ul>
166
+ <li>
167
+ <span class="param-type">number</span>
168
+ </li>
169
+ </ul>
170
+ <dl class="details">
171
+ </dl>
172
+ </dd>
173
+ <dt>
174
+ <h4 class="name" id="scale"><span class="type-signature"></span>scale<span class="type-signature"> :number</span>
175
+ </h4>
176
+ </dt>
177
+ <dd>
178
+ <div class="description">
179
+ Returns the column's scale.
180
+ </div>
181
+ <h5>Type:</h5>
182
+ <ul>
183
+ <li>
184
+ <span class="param-type">number</span>
185
+ </li>
186
+ </ul>
187
+ <dl class="details">
188
+ </dl>
189
+ </dd>
190
+ <dt>
191
+ <h4 class="name" id="tableName"><span class="type-signature"></span>tableName<span
192
+ class="type-signature"> :string</span></h4>
193
+ </dt>
194
+ <dd>
195
+ <div class="description">
196
+ Returns the name of the table to which the column belongs.
197
+ </div>
198
+ <h5>Type:</h5>
199
+ <ul>
200
+ <li>
201
+ <span class="param-type">string</span>
202
+ </li>
203
+ </ul>
204
+ <dl class="details">
205
+ </dl>
206
+ </dd>
207
+ <dt>
208
+ <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :<a
209
+ href="$.hdb.html#types">$.hdb.types</a></span></h4>
210
+ </dt>
211
+ <dd>
212
+ <div class="description">
213
+ Returns the column's type.
214
+ </div>
215
+ <h5>Type:</h5>
216
+ <ul>
217
+ <li>
218
+ <span class="param-type"><a href="$.hdb.html#types">$.hdb.types</a></span>
219
+ </li>
220
+ </ul>
221
+ <dl class="details">
222
+ </dl>
223
+ </dd>
224
+ <dt>
225
+ <h4 class="name" id="typeName"><span class="type-signature"></span>typeName<span
226
+ class="type-signature"> :string</span></h4>
227
+ </dt>
228
+ <dd>
229
+ <div class="description">
230
+ Returns the column's type name.
231
+ </div>
232
+ <h5>Type:</h5>
233
+ <ul>
234
+ <li>
235
+ <span class="param-type">string</span>
236
+ </li>
237
+ </ul>
238
+ <dl class="details">
239
+ </dl>
240
+ </dd>
241
+ </dl>
242
+ </article>
243
+ </section>
244
+ </div>
245
+ <nav>
246
+ <h2><a href="index.html">Index</a></h2>
247
+ <h3>Classes</h3>
248
+ <table>
249
+ <tr>
250
+ <td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
251
+ <td class="oblique">$.security</td>
252
+ </tr>
253
+ <tr>
254
+ <td><a href="$.Application.html">Application</a></td>
255
+ <td class="oblique">$</td>
256
+ </tr>
257
+ <tr>
258
+ <td><a href="$.web.Body.html">Body</a></td>
259
+ <td class="oblique">$.web</td>
260
+ </tr>
261
+ <tr>
262
+ <td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
263
+ <td class="oblique">$.db</td>
264
+ </tr>
265
+ <tr>
266
+ <td><a href="$.net.http.Client.html">Client</a></td>
267
+ <td class="oblique">$.net.http</td>
268
+ </tr>
269
+ <tr>
270
+ <td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
271
+ <td class="oblique">$.hdb</td>
272
+ </tr>
273
+ <tr>
274
+ <td><a href="$.db.Connection.html">Connection</a></td>
275
+ <td class="oblique">$.db</td>
276
+ </tr>
277
+ <tr>
278
+ <td><a href="$.hdb.Connection.html">Connection</a></td>
279
+ <td class="oblique">$.hdb</td>
280
+ </tr>
281
+ <tr>
282
+ <td><a href="$.net.Destination.html">Destination</a></td>
283
+ <td class="oblique">$.net</td>
284
+ </tr>
285
+ <tr>
286
+ <td><a href="$.net.http.Destination.html">Destination</a></td>
287
+ <td class="oblique">$.net.http</td>
288
+ </tr>
289
+ <tr>
290
+ <td><a href="$.web.EntityList.html">EntityList</a></td>
291
+ <td class="oblique">$.web</td>
292
+ </tr>
293
+ <tr>
294
+ <td><a href="$.jobs.Job.html">Job</a></td>
295
+ <td class="oblique">$.jobs</td>
296
+ </tr>
297
+ <tr>
298
+ <td><a href="$.jobs.JobLog.html">JobLog</a></td>
299
+ <td class="oblique">$.jobs</td>
300
+ </tr>
301
+ <tr>
302
+ <td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
303
+ <td class="oblique">$.jobs</td>
304
+ </tr>
305
+ <tr>
306
+ <td><a href="$.net.Mail.html">Mail</a></td>
307
+ <td class="oblique">$.net</td>
308
+ </tr>
309
+ <tr>
310
+ <td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
311
+ <td class="oblique">$.db</td>
312
+ </tr>
313
+ <tr>
314
+ <td><a href="$.net.Mail.Part.html">Part</a></td>
315
+ <td class="oblique">$.net.Mail</td>
316
+ </tr>
317
+ <tr>
318
+ <td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
319
+ <td class="oblique">$.db</td>
320
+ </tr>
321
+ <tr>
322
+ <td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
323
+ <td class="oblique">$.hdb</td>
324
+ </tr>
325
+ <tr>
326
+ <td><a href="$.net.http.Request.html">Request</a></td>
327
+ <td class="oblique">$.net.http</td>
328
+ </tr>
329
+ <tr>
330
+ <td><a href="$.db.ResultSet.html">ResultSet</a></td>
331
+ <td class="oblique">$.db</td>
332
+ </tr>
333
+ <tr>
334
+ <td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
335
+ <td class="oblique">$.hdb</td>
336
+ </tr>
337
+ <tr>
338
+ <td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
339
+ <td class="oblique">$.hdb</td>
340
+ </tr>
341
+ <tr>
342
+ <td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
343
+ <td class="oblique">$.db</td>
344
+ </tr>
345
+ <tr>
346
+ <td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
347
+ <td class="oblique">$.hdb</td>
348
+ </tr>
349
+ <tr>
350
+ <td><a href="$.util.SAXParser.html">SAXParser</a></td>
351
+ <td class="oblique">$.util</td>
352
+ </tr>
353
+ <tr>
354
+ <td><a href="$.Session.html">Session</a></td>
355
+ <td class="oblique">$</td>
356
+ </tr>
357
+ <tr>
358
+ <td><a href="$.text.analysis.Session.html">Session</a></td>
359
+ <td class="oblique">$.text.analysis</td>
360
+ </tr>
361
+ <tr>
362
+ <td><a href="$.text.mining.Session.html">Session</a></td>
363
+ <td class="oblique">$.text.mining</td>
364
+ </tr>
365
+ <tr>
366
+ <td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
367
+ <td class="oblique">$.net</td>
368
+ </tr>
369
+ <tr>
370
+ <td><a href="$.db.SQLException.html">SQLException</a></td>
371
+ <td class="oblique">$.db</td>
372
+ </tr>
373
+ <tr>
374
+ <td><a href="$.hdb.SQLException.html">SQLException</a></td>
375
+ <td class="oblique">$.hdb</td>
376
+ </tr>
377
+ <tr>
378
+ <td><a href="$.security.Store.html">Store</a></td>
379
+ <td class="oblique">$.security</td>
380
+ </tr>
381
+ <tr>
382
+ <td><a href="$.web.TupelList.html">TupelList</a></td>
383
+ <td class="oblique">$.web</td>
384
+ </tr>
385
+ <tr>
386
+ <td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
387
+ <td class="oblique">$.web</td>
388
+ </tr>
389
+ <tr>
390
+ <td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
391
+ <td class="oblique">$.web</td>
392
+ </tr>
393
+ <tr>
394
+ <td><a href="$.web.WebRequest.html">WebRequest</a></td>
395
+ <td class="oblique">$.web</td>
396
+ </tr>
397
+ <tr>
398
+ <td><a href="$.web.WebResponse.html">WebResponse</a></td>
399
+ <td class="oblique">$.web</td>
400
+ </tr>
401
+ <tr>
402
+ <td><a href="$.util.Zip.html">Zip</a></td>
403
+ <td class="oblique">$.util</td>
404
+ </tr>
405
+ </table>
406
+ <h3>Namespaces</h3>
407
+ <ul>
408
+ <li><a href="$.html"><span class="oblique"></span>$</a></li>
409
+ <li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
410
+ <li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
411
+ <li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
412
+ <li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
413
+ <li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
414
+ <li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
415
+ <li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
416
+ <li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
417
+ <li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
418
+ <li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
419
+ <li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
420
+ <li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
421
+ <li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
422
+ <li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
423
+ <li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
424
+ <li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
425
+ <li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
426
+ </ul>
427
+ </nav>
428
+ <br clear="both">
429
+ <footer>
430
+ <a href="Copyright-SAP.html">Copyright</a>
431
+ &
432
+ <a href="Disclaimer-SAP.html">Disclaimer</a>
433
+ </footer>
434
+ <script>prettyPrint();</script>
435
+ <script src="scripts/linenumber.js"></script>
436
+ </body>
437
+
438
+ </html>