@sap/async-xsjs 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/LICENSE +37 -0
- package/README.md +445 -0
- package/differences.md +162 -0
- package/docs/$.Application.html +262 -0
- package/docs/$.Session.html +674 -0
- package/docs/$.db.CallableStatement.html +2524 -0
- package/docs/$.db.Connection.html +511 -0
- package/docs/$.db.ParameterMetaData.html +805 -0
- package/docs/$.db.PreparedStatement.html +1796 -0
- package/docs/$.db.ResultSet.html +1308 -0
- package/docs/$.db.ResultSetMetaData.html +800 -0
- package/docs/$.db.SQLException.html +259 -0
- package/docs/$.db.html +773 -0
- package/docs/$.hdb.ColumnMetadata.html +438 -0
- package/docs/$.hdb.Connection.html +663 -0
- package/docs/$.hdb.ProcedureResult.html +280 -0
- package/docs/$.hdb.ResultSet.html +324 -0
- package/docs/$.hdb.ResultSetIterator.html +315 -0
- package/docs/$.hdb.ResultSetMetaData.html +259 -0
- package/docs/$.hdb.SQLException.html +259 -0
- package/docs/$.hdb.html +557 -0
- package/docs/$.html +471 -0
- package/docs/$.jobs.Job.html +783 -0
- package/docs/$.jobs.JobLog.html +380 -0
- package/docs/$.jobs.JobSchedules.html +852 -0
- package/docs/$.jobs.html +238 -0
- package/docs/$.net.Destination.html +304 -0
- package/docs/$.net.Mail.Part.html +510 -0
- package/docs/$.net.Mail.html +504 -0
- package/docs/$.net.SMTPConnection.html +347 -0
- package/docs/$.net.html +749 -0
- package/docs/$.net.http.Client.html +562 -0
- package/docs/$.net.http.Destination.html +237 -0
- package/docs/$.net.http.Request.html +567 -0
- package/docs/$.net.http.html +292 -0
- package/docs/$.security.AntiVirus.html +361 -0
- package/docs/$.security.Store.html +636 -0
- package/docs/$.security.crypto.html +414 -0
- package/docs/$.security.html +247 -0
- package/docs/$.security.x509.html +373 -0
- package/docs/$.text.analysis.Session.html +983 -0
- package/docs/$.text.analysis.html +242 -0
- package/docs/$.text.html +246 -0
- package/docs/$.text.mining.Session.html +2018 -0
- package/docs/$.text.mining.html +242 -0
- package/docs/$.trace.html +525 -0
- package/docs/$.util.SAXParser.html +955 -0
- package/docs/$.util.Zip.html +474 -0
- package/docs/$.util.codec.html +414 -0
- package/docs/$.util.compression.html +357 -0
- package/docs/$.util.html +325 -0
- package/docs/$.util.sql.html +290 -0
- package/docs/$.web.Body.html +333 -0
- package/docs/$.web.EntityList.html +296 -0
- package/docs/$.web.TupelList.html +496 -0
- package/docs/$.web.WebEntityRequest.html +393 -0
- package/docs/$.web.WebEntityResponse.html +392 -0
- package/docs/$.web.WebRequest.html +560 -0
- package/docs/$.web.WebResponse.html +609 -0
- package/docs/$.web.html +246 -0
- package/docs/Copyright-SAP.html +39 -0
- package/docs/Disclaimer-SAP.html +55 -0
- package/docs/index.html +232 -0
- package/docs/styles/jsdoc-default.css +382 -0
- package/lib/AppConfig.js +36 -0
- package/lib/AuditLogger.js +41 -0
- package/lib/cacert.js +26 -0
- package/lib/ctypes.js +153 -0
- package/lib/destinations/dest-provider.js +57 -0
- package/lib/index.js +235 -0
- package/lib/jobs/Action.js +40 -0
- package/lib/jobs/Job.js +100 -0
- package/lib/jobs/JobManager.js +150 -0
- package/lib/jobs/JobsRuntime.js +133 -0
- package/lib/jobs/SqlScriptJobRunner.js +36 -0
- package/lib/jobs/XsjsJobRunner.js +78 -0
- package/lib/jobs/index.js +11 -0
- package/lib/logging.js +16 -0
- package/lib/middleware.js +125 -0
- package/lib/odata/ODataService.js +125 -0
- package/lib/odata/index.js +7 -0
- package/lib/odata/service-factory.js +26 -0
- package/lib/passport-noauth.js +17 -0
- package/lib/routes.js +115 -0
- package/lib/runtime.js +740 -0
- package/lib/sandbox.js +40 -0
- package/lib/utils/XsJsFunctionRunner.js +57 -0
- package/lib/utils/XsJsLibFunctionRunner.js +57 -0
- package/lib/utils/buffer-utils.js +77 -0
- package/lib/utils/compression-utils.js +14 -0
- package/lib/utils/date-utils.js +104 -0
- package/lib/utils/errors/HttpError.js +20 -0
- package/lib/utils/errors/wrap-app-error.js +18 -0
- package/lib/utils/index.js +17 -0
- package/lib/utils/xs-function-runner.js +51 -0
- package/lib/utils/xs-types.js +21 -0
- package/lib/utils/xspath.js +36 -0
- package/lib/utils/xsstack.js +28 -0
- package/lib/views/error.html +28 -0
- package/lib/xsjs/Application.js +28 -0
- package/lib/xsjs/Locale.js +53 -0
- package/lib/xsjs/Session.js +31 -0
- package/lib/xsjs/constants.js +71 -0
- package/lib/xsjs/db/common/DbBase.js +85 -0
- package/lib/xsjs/db/common/DbOptions.js +163 -0
- package/lib/xsjs/db/common/arguments-validation.js +102 -0
- package/lib/xsjs/db/common/connection.js +12 -0
- package/lib/xsjs/db/common/enums.js +93 -0
- package/lib/xsjs/db/common/execute-batch.js +38 -0
- package/lib/xsjs/db/common/parse-time.js +139 -0
- package/lib/xsjs/db/dbapi/CallableStatement.js +192 -0
- package/lib/xsjs/db/dbapi/Connection.js +78 -0
- package/lib/xsjs/db/dbapi/DB.js +39 -0
- package/lib/xsjs/db/dbapi/ParameterMetaData.js +118 -0
- package/lib/xsjs/db/dbapi/PreparedStatement.js +78 -0
- package/lib/xsjs/db/dbapi/ResultSet.js +220 -0
- package/lib/xsjs/db/dbapi/ResultSetMetaData.js +116 -0
- package/lib/xsjs/db/dbapi/Statement.js +514 -0
- package/lib/xsjs/db/dbapi/conversions.js +113 -0
- package/lib/xsjs/db/dbapi/fetch-rows.js +32 -0
- package/lib/xsjs/db/hdbapi/Connection.js +525 -0
- package/lib/xsjs/db/hdbapi/HDB.js +32 -0
- package/lib/xsjs/db/hdbapi/ResultSetIterator.js +40 -0
- package/lib/xsjs/db/hdbapi/convert.js +77 -0
- package/lib/xsjs/db/hdbapi/table-string-parser.js +52 -0
- package/lib/xsjs/db/index.js +4 -0
- package/lib/xsjs/index.js +13 -0
- package/lib/xsjs/jobs/Job.js +228 -0
- package/lib/xsjs/jobs/Jobs.js +11 -0
- package/lib/xsjs/jobs/Logs.js +127 -0
- package/lib/xsjs/jobs/Schedule.js +110 -0
- package/lib/xsjs/jobs/Schedules.js +108 -0
- package/lib/xsjs/net/Destination.js +43 -0
- package/lib/xsjs/net/http/Client.js +220 -0
- package/lib/xsjs/net/http/HTTP.js +72 -0
- package/lib/xsjs/net/index.js +5 -0
- package/lib/xsjs/net/smtp/Mail.js +38 -0
- package/lib/xsjs/net/smtp/Part.js +30 -0
- package/lib/xsjs/net/smtp/SMTPConnection.js +39 -0
- package/lib/xsjs/net/smtp/index.js +18 -0
- package/lib/xsjs/net/smtp/nodemailer-util.js +77 -0
- package/lib/xsjs/require.js +39 -0
- package/lib/xsjs/security/AntiVirus.js +31 -0
- package/lib/xsjs/security/Store.js +119 -0
- package/lib/xsjs/security/crypto.js +23 -0
- package/lib/xsjs/security/index.js +5 -0
- package/lib/xsjs/security/x509.js +12 -0
- package/lib/xsjs/text/analysis/Session.js +128 -0
- package/lib/xsjs/text/index.js +30 -0
- package/lib/xsjs/text/mining/Session.js +82 -0
- package/lib/xsjs/trace/trace.js +41 -0
- package/lib/xsjs/util/SAXParser.js +174 -0
- package/lib/xsjs/util/Zip.js +220 -0
- package/lib/xsjs/util/codec.js +33 -0
- package/lib/xsjs/util/compression.js +24 -0
- package/lib/xsjs/util/index.js +22 -0
- package/lib/xsjs/web/BasicWebEntity.js +41 -0
- package/lib/xsjs/web/EntityList.js +11 -0
- package/lib/xsjs/web/TupelLists/CookiesTupelList.js +47 -0
- package/lib/xsjs/web/TupelLists/HeadersTupelList.js +55 -0
- package/lib/xsjs/web/TupelLists/ParametersTupelList.js +83 -0
- package/lib/xsjs/web/TupelLists/TupelListBase.js +45 -0
- package/lib/xsjs/web/WebBody.js +135 -0
- package/lib/xsjs/web/WebEntityRequest.js +40 -0
- package/lib/xsjs/web/WebEntityResponse.js +26 -0
- package/lib/xsjs/web/WebRequest.js +209 -0
- package/lib/xsjs/web/WebResponse.js +183 -0
- package/lib/xsjs/web/index.js +4 -0
- package/lib/xsjs/web/utils/HeadersParser.js +53 -0
- package/lib/xsjs/web/utils/HttpRequestParser.js +93 -0
- package/lib/xsjs/web/utils/MultipartParser.js +163 -0
- package/lib/xsjs/web/utils/MultipartResponseBuilder.js +73 -0
- package/lib/xsjs/web/utils/SetCookieParser.js +32 -0
- package/lib/xsjslib/TextBundleWrapper.js +46 -0
- package/lib/xsjslib/index.js +11 -0
- package/npm-shrinkwrap.json +11540 -0
- package/package.json +84 -0
|
@@ -0,0 +1,511 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<title>JSDoc: Class: Connection</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
|
+
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="main">
|
|
19
|
+
<h1 class="page-title">Class: Connection</h1>
|
|
20
|
+
<section>
|
|
21
|
+
<header>
|
|
22
|
+
<h2>
|
|
23
|
+
<span class="ancestors"><a href="$.html">$</a><a href="$.db.html">.db</a>.</span>
|
|
24
|
+
Connection
|
|
25
|
+
</h2>
|
|
26
|
+
</header>
|
|
27
|
+
<article>
|
|
28
|
+
<div class="container-overview">
|
|
29
|
+
<dt>
|
|
30
|
+
<h4 class="name" id="Connection"><span class="type-signature"></span>new Connection<span
|
|
31
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
32
|
+
</dt>
|
|
33
|
+
<dd>
|
|
34
|
+
<div class="description">
|
|
35
|
+
Represents the connection to the database
|
|
36
|
+
</div>
|
|
37
|
+
<dl class="details">
|
|
38
|
+
</dl>
|
|
39
|
+
</dd>
|
|
40
|
+
</div>
|
|
41
|
+
<h3 class="subsection-title">Methods</h3>
|
|
42
|
+
<dl>
|
|
43
|
+
<dt>
|
|
44
|
+
<h4 class="name" id="close"><span class="type-signature">async </span>close<span
|
|
45
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
46
|
+
</dt>
|
|
47
|
+
<dd>
|
|
48
|
+
<div class="description">
|
|
49
|
+
Closes the connection.
|
|
50
|
+
</div>
|
|
51
|
+
<dl class="details">
|
|
52
|
+
</dl>
|
|
53
|
+
<h5>Throws:</h5>
|
|
54
|
+
<ul>
|
|
55
|
+
<li>
|
|
56
|
+
<div class="param-desc">
|
|
57
|
+
Throws an error if the object the method is being called on is not valid.
|
|
58
|
+
</div>
|
|
59
|
+
</li>
|
|
60
|
+
<li>
|
|
61
|
+
<div class="param-desc">
|
|
62
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
63
|
+
</div>
|
|
64
|
+
</li>
|
|
65
|
+
</ul>
|
|
66
|
+
</dd>
|
|
67
|
+
<dt>
|
|
68
|
+
<h4 class="name" id="commit"><span class="type-signature">async </span>commit<span
|
|
69
|
+
class="signature">()</span><span class="type-signature"></span></h4>
|
|
70
|
+
</dt>
|
|
71
|
+
<dd>
|
|
72
|
+
<div class="description">
|
|
73
|
+
Commits the changes.
|
|
74
|
+
</div>
|
|
75
|
+
<dl class="details">
|
|
76
|
+
</dl>
|
|
77
|
+
<h5>Throws:</h5>
|
|
78
|
+
<ul>
|
|
79
|
+
<li>
|
|
80
|
+
<div class="param-desc">
|
|
81
|
+
Throws an error if the object the method is being called on is not valid.
|
|
82
|
+
</div>
|
|
83
|
+
</li>
|
|
84
|
+
<li>
|
|
85
|
+
<div class="param-desc">
|
|
86
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
87
|
+
</div>
|
|
88
|
+
</li>
|
|
89
|
+
</ul>
|
|
90
|
+
</dd>
|
|
91
|
+
<dt>
|
|
92
|
+
<h4 class="name" id="isClosed"><span class="type-signature"></span>isClosed<span class="signature">()</span><span
|
|
93
|
+
class="type-signature"> → {boolean}</span></h4>
|
|
94
|
+
</dt>
|
|
95
|
+
<dd>
|
|
96
|
+
<div class="description">
|
|
97
|
+
Checks if the connection is closed.
|
|
98
|
+
</div>
|
|
99
|
+
<dl class="details">
|
|
100
|
+
</dl>
|
|
101
|
+
<h5>Throws:</h5>
|
|
102
|
+
<ul>
|
|
103
|
+
<li>
|
|
104
|
+
<div class="param-desc">
|
|
105
|
+
Throws an error if the object the method is being called on is not valid.
|
|
106
|
+
</div>
|
|
107
|
+
</li>
|
|
108
|
+
<li>
|
|
109
|
+
<div class="param-desc">
|
|
110
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
111
|
+
</div>
|
|
112
|
+
</li>
|
|
113
|
+
</ul>
|
|
114
|
+
<h5>Returns:</h5>
|
|
115
|
+
<div class="param-desc">
|
|
116
|
+
Returns true if the connection is already closed, false if not
|
|
117
|
+
</div>
|
|
118
|
+
<dl>
|
|
119
|
+
<dt>
|
|
120
|
+
Type
|
|
121
|
+
</dt>
|
|
122
|
+
<dd>
|
|
123
|
+
<span class="param-type">boolean</span>
|
|
124
|
+
</dd>
|
|
125
|
+
</dl>
|
|
126
|
+
</dd>
|
|
127
|
+
<dt>
|
|
128
|
+
<h4 class="name" id="prepareCall"><span class="type-signature">async </span>prepareCall<span
|
|
129
|
+
class="signature">(statement)</span><span class="type-signature"> → {<a
|
|
130
|
+
href="$.db.CallableStatement.html">$.db.CallableStatement</a>}</span></h4>
|
|
131
|
+
</dt>
|
|
132
|
+
<dd>
|
|
133
|
+
<div class="description">
|
|
134
|
+
Prepares a stored procedure for execution
|
|
135
|
+
</div>
|
|
136
|
+
<h5>Parameters:</h5>
|
|
137
|
+
<table class="params">
|
|
138
|
+
<thead>
|
|
139
|
+
<tr>
|
|
140
|
+
<th>Name</th>
|
|
141
|
+
<th>Type</th>
|
|
142
|
+
<th class="last">Description</th>
|
|
143
|
+
</tr>
|
|
144
|
+
</thead>
|
|
145
|
+
<tbody>
|
|
146
|
+
<tr>
|
|
147
|
+
<td class="name"><code>statement</code></td>
|
|
148
|
+
<td class="type">
|
|
149
|
+
<span class="param-type">string</span>
|
|
150
|
+
</td>
|
|
151
|
+
<td class="description last">The SQL statement to be prepared</td>
|
|
152
|
+
</tr>
|
|
153
|
+
</tbody>
|
|
154
|
+
</table>
|
|
155
|
+
<dl class="details">
|
|
156
|
+
</dl>
|
|
157
|
+
<h5>Throws:</h5>
|
|
158
|
+
<ul>
|
|
159
|
+
<li>
|
|
160
|
+
<div class="param-desc">
|
|
161
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
162
|
+
not valid.
|
|
163
|
+
</div>
|
|
164
|
+
</li>
|
|
165
|
+
<li>
|
|
166
|
+
<div class="param-desc">
|
|
167
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
168
|
+
</div>
|
|
169
|
+
</li>
|
|
170
|
+
</ul>
|
|
171
|
+
<h5>Returns:</h5>
|
|
172
|
+
<div class="param-desc">
|
|
173
|
+
CallableStatement The object used to represent the callable statement
|
|
174
|
+
</div>
|
|
175
|
+
<dl>
|
|
176
|
+
<dt>
|
|
177
|
+
Type
|
|
178
|
+
</dt>
|
|
179
|
+
<dd>
|
|
180
|
+
<span class="param-type"><a
|
|
181
|
+
href="$.db.CallableStatement.html">$.db.CallableStatement</a></span>
|
|
182
|
+
</dd>
|
|
183
|
+
</dl>
|
|
184
|
+
<h5>Example</h5>
|
|
185
|
+
<pre class="prettyprint"><code>var myCallableStatement = <b>await </b>myconnection.prepareCall("{call myprocedure(?)}");</code></pre>
|
|
186
|
+
</dd>
|
|
187
|
+
<dt>
|
|
188
|
+
<h4 class="name" id="prepareStatement"><span class="type-signature">async </span>prepareStatement<span
|
|
189
|
+
class="signature">(statement)</span><span class="type-signature"> → {<a
|
|
190
|
+
href="$.db.PreparedStatement.html">$.db.PreparedStatement</a>}</span></h4>
|
|
191
|
+
</dt>
|
|
192
|
+
<dd>
|
|
193
|
+
<div class="description">
|
|
194
|
+
Prepares a statement for execution
|
|
195
|
+
</div>
|
|
196
|
+
<h5>Parameters:</h5>
|
|
197
|
+
<table class="params">
|
|
198
|
+
<thead>
|
|
199
|
+
<tr>
|
|
200
|
+
<th>Name</th>
|
|
201
|
+
<th>Type</th>
|
|
202
|
+
<th class="last">Description</th>
|
|
203
|
+
</tr>
|
|
204
|
+
</thead>
|
|
205
|
+
<tbody>
|
|
206
|
+
<tr>
|
|
207
|
+
<td class="name"><code>statement</code></td>
|
|
208
|
+
<td class="type">
|
|
209
|
+
<span class="param-type">string</span>
|
|
210
|
+
</td>
|
|
211
|
+
<td class="description last">The SQL statement to be prepared</td>
|
|
212
|
+
</tr>
|
|
213
|
+
</tbody>
|
|
214
|
+
</table>
|
|
215
|
+
<dl class="details">
|
|
216
|
+
</dl>
|
|
217
|
+
<h5>Throws:</h5>
|
|
218
|
+
<ul>
|
|
219
|
+
<li>
|
|
220
|
+
<div class="param-desc">
|
|
221
|
+
Throws an error on invalid parameters or if the object the method is being called on is
|
|
222
|
+
not valid.
|
|
223
|
+
</div>
|
|
224
|
+
</li>
|
|
225
|
+
<li>
|
|
226
|
+
<div class="param-desc">
|
|
227
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
228
|
+
</div>
|
|
229
|
+
</li>
|
|
230
|
+
</ul>
|
|
231
|
+
<h5>Returns:</h5>
|
|
232
|
+
<div class="param-desc">
|
|
233
|
+
PreparedStatement object that represents the prepared statement
|
|
234
|
+
</div>
|
|
235
|
+
<dl>
|
|
236
|
+
<dt>
|
|
237
|
+
Type
|
|
238
|
+
</dt>
|
|
239
|
+
<dd>
|
|
240
|
+
<span class="param-type"><a
|
|
241
|
+
href="$.db.PreparedStatement.html">$.db.PreparedStatement</a></span>
|
|
242
|
+
</dd>
|
|
243
|
+
</dl>
|
|
244
|
+
</dd>
|
|
245
|
+
<dt>
|
|
246
|
+
<h4 class="name" id="rollback"><span class="type-signature">async </span>rollback<span class="signature">()</span><span
|
|
247
|
+
class="type-signature"></span></h4>
|
|
248
|
+
</dt>
|
|
249
|
+
<dd>
|
|
250
|
+
<div class="description">
|
|
251
|
+
Rolls back the changes.
|
|
252
|
+
</div>
|
|
253
|
+
<dl class="details">
|
|
254
|
+
</dl>
|
|
255
|
+
<h5>Throws:</h5>
|
|
256
|
+
<ul>
|
|
257
|
+
<li>
|
|
258
|
+
<div class="param-desc">
|
|
259
|
+
Throws an error if the object the method is being called on is not valid.
|
|
260
|
+
</div>
|
|
261
|
+
</li>
|
|
262
|
+
<li>
|
|
263
|
+
<div class="param-desc">
|
|
264
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
265
|
+
</div>
|
|
266
|
+
</li>
|
|
267
|
+
</ul>
|
|
268
|
+
</dd>
|
|
269
|
+
<dt>
|
|
270
|
+
<h4 class="name" id="setAutoCommit"><span class="type-signature"></span>setAutoCommit<span
|
|
271
|
+
class="signature">(enable)</span><span class="type-signature"></span></h4>
|
|
272
|
+
</dt>
|
|
273
|
+
<dd>
|
|
274
|
+
<div class="description">
|
|
275
|
+
Changes the auto-commit flag of the connection
|
|
276
|
+
</div>
|
|
277
|
+
<h5>Parameters:</h5>
|
|
278
|
+
<table class="params">
|
|
279
|
+
<thead>
|
|
280
|
+
<tr>
|
|
281
|
+
<th>Name</th>
|
|
282
|
+
<th>Type</th>
|
|
283
|
+
<th class="last">Description</th>
|
|
284
|
+
</tr>
|
|
285
|
+
</thead>
|
|
286
|
+
<tbody>
|
|
287
|
+
<tr>
|
|
288
|
+
<td class="name"><code>enable</code></td>
|
|
289
|
+
<td class="type">
|
|
290
|
+
<span class="param-type">integer</span>
|
|
291
|
+
</td>
|
|
292
|
+
<td class="description last">An integer value, which can be either 0 (false) or 1 (true)
|
|
293
|
+
</td>
|
|
294
|
+
</tr>
|
|
295
|
+
</tbody>
|
|
296
|
+
</table>
|
|
297
|
+
<dl class="details">
|
|
298
|
+
</dl>
|
|
299
|
+
<h5>Throws:</h5>
|
|
300
|
+
<ul>
|
|
301
|
+
<li>
|
|
302
|
+
<div class="param-desc">
|
|
303
|
+
Throws an error if the object the method is being called on is not valid.
|
|
304
|
+
</div>
|
|
305
|
+
</li>
|
|
306
|
+
<li>
|
|
307
|
+
<div class="param-desc">
|
|
308
|
+
<span class="param-type"><a href="$.db.SQLException.html">$.db.SQLException</a></span>
|
|
309
|
+
</div>
|
|
310
|
+
</li>
|
|
311
|
+
</ul>
|
|
312
|
+
</dd>
|
|
313
|
+
</dl>
|
|
314
|
+
</article>
|
|
315
|
+
</section>
|
|
316
|
+
</div>
|
|
317
|
+
<nav>
|
|
318
|
+
<h2><a href="index.html">Index</a></h2>
|
|
319
|
+
<h3>Classes</h3>
|
|
320
|
+
<table>
|
|
321
|
+
<tr>
|
|
322
|
+
<td><a href="$.security.AntiVirus.html">AntiVirus</a></td>
|
|
323
|
+
<td class="oblique">$.security</td>
|
|
324
|
+
</tr>
|
|
325
|
+
<tr>
|
|
326
|
+
<td><a href="$.Application.html">Application</a></td>
|
|
327
|
+
<td class="oblique">$</td>
|
|
328
|
+
</tr>
|
|
329
|
+
<tr>
|
|
330
|
+
<td><a href="$.web.Body.html">Body</a></td>
|
|
331
|
+
<td class="oblique">$.web</td>
|
|
332
|
+
</tr>
|
|
333
|
+
<tr>
|
|
334
|
+
<td><a href="$.db.CallableStatement.html">CallableStatement</a></td>
|
|
335
|
+
<td class="oblique">$.db</td>
|
|
336
|
+
</tr>
|
|
337
|
+
<tr>
|
|
338
|
+
<td><a href="$.net.http.Client.html">Client</a></td>
|
|
339
|
+
<td class="oblique">$.net.http</td>
|
|
340
|
+
</tr>
|
|
341
|
+
<tr>
|
|
342
|
+
<td><a href="$.hdb.ColumnMetadata.html">ColumnMetadata</a></td>
|
|
343
|
+
<td class="oblique">$.hdb</td>
|
|
344
|
+
</tr>
|
|
345
|
+
<tr>
|
|
346
|
+
<td><a href="$.db.Connection.html">Connection</a></td>
|
|
347
|
+
<td class="oblique">$.db</td>
|
|
348
|
+
</tr>
|
|
349
|
+
<tr>
|
|
350
|
+
<td><a href="$.hdb.Connection.html">Connection</a></td>
|
|
351
|
+
<td class="oblique">$.hdb</td>
|
|
352
|
+
</tr>
|
|
353
|
+
<tr>
|
|
354
|
+
<td><a href="$.net.Destination.html">Destination</a></td>
|
|
355
|
+
<td class="oblique">$.net</td>
|
|
356
|
+
</tr>
|
|
357
|
+
<tr>
|
|
358
|
+
<td><a href="$.net.http.Destination.html">Destination</a></td>
|
|
359
|
+
<td class="oblique">$.net.http</td>
|
|
360
|
+
</tr>
|
|
361
|
+
<tr>
|
|
362
|
+
<td><a href="$.web.EntityList.html">EntityList</a></td>
|
|
363
|
+
<td class="oblique">$.web</td>
|
|
364
|
+
</tr>
|
|
365
|
+
<tr>
|
|
366
|
+
<td><a href="$.jobs.Job.html">Job</a></td>
|
|
367
|
+
<td class="oblique">$.jobs</td>
|
|
368
|
+
</tr>
|
|
369
|
+
<tr>
|
|
370
|
+
<td><a href="$.jobs.JobLog.html">JobLog</a></td>
|
|
371
|
+
<td class="oblique">$.jobs</td>
|
|
372
|
+
</tr>
|
|
373
|
+
<tr>
|
|
374
|
+
<td><a href="$.jobs.JobSchedules.html">JobSchedules</a></td>
|
|
375
|
+
<td class="oblique">$.jobs</td>
|
|
376
|
+
</tr>
|
|
377
|
+
<tr>
|
|
378
|
+
<td><a href="$.net.Mail.html">Mail</a></td>
|
|
379
|
+
<td class="oblique">$.net</td>
|
|
380
|
+
</tr>
|
|
381
|
+
<tr>
|
|
382
|
+
<td><a href="$.db.ParameterMetaData.html">ParameterMetaData</a></td>
|
|
383
|
+
<td class="oblique">$.db</td>
|
|
384
|
+
</tr>
|
|
385
|
+
<tr>
|
|
386
|
+
<td><a href="$.net.Mail.Part.html">Part</a></td>
|
|
387
|
+
<td class="oblique">$.net.Mail</td>
|
|
388
|
+
</tr>
|
|
389
|
+
<tr>
|
|
390
|
+
<td><a href="$.db.PreparedStatement.html">PreparedStatement</a></td>
|
|
391
|
+
<td class="oblique">$.db</td>
|
|
392
|
+
</tr>
|
|
393
|
+
<tr>
|
|
394
|
+
<td><a href="$.hdb.ProcedureResult.html">ProcedureResult</a></td>
|
|
395
|
+
<td class="oblique">$.hdb</td>
|
|
396
|
+
</tr>
|
|
397
|
+
<tr>
|
|
398
|
+
<td><a href="$.net.http.Request.html">Request</a></td>
|
|
399
|
+
<td class="oblique">$.net.http</td>
|
|
400
|
+
</tr>
|
|
401
|
+
<tr>
|
|
402
|
+
<td><a href="$.db.ResultSet.html">ResultSet</a></td>
|
|
403
|
+
<td class="oblique">$.db</td>
|
|
404
|
+
</tr>
|
|
405
|
+
<tr>
|
|
406
|
+
<td><a href="$.hdb.ResultSet.html">ResultSet</a></td>
|
|
407
|
+
<td class="oblique">$.hdb</td>
|
|
408
|
+
</tr>
|
|
409
|
+
<tr>
|
|
410
|
+
<td><a href="$.hdb.ResultSetIterator.html">ResultSetIterator</a></td>
|
|
411
|
+
<td class="oblique">$.hdb</td>
|
|
412
|
+
</tr>
|
|
413
|
+
<tr>
|
|
414
|
+
<td><a href="$.db.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
415
|
+
<td class="oblique">$.db</td>
|
|
416
|
+
</tr>
|
|
417
|
+
<tr>
|
|
418
|
+
<td><a href="$.hdb.ResultSetMetaData.html">ResultSetMetaData</a></td>
|
|
419
|
+
<td class="oblique">$.hdb</td>
|
|
420
|
+
</tr>
|
|
421
|
+
<tr>
|
|
422
|
+
<td><a href="$.util.SAXParser.html">SAXParser</a></td>
|
|
423
|
+
<td class="oblique">$.util</td>
|
|
424
|
+
</tr>
|
|
425
|
+
<tr>
|
|
426
|
+
<td><a href="$.Session.html">Session</a></td>
|
|
427
|
+
<td class="oblique">$</td>
|
|
428
|
+
</tr>
|
|
429
|
+
<tr>
|
|
430
|
+
<td><a href="$.text.analysis.Session.html">Session</a></td>
|
|
431
|
+
<td class="oblique">$.text.analysis</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td><a href="$.text.mining.Session.html">Session</a></td>
|
|
435
|
+
<td class="oblique">$.text.mining</td>
|
|
436
|
+
</tr>
|
|
437
|
+
<tr>
|
|
438
|
+
<td><a href="$.net.SMTPConnection.html">SMTPConnection</a></td>
|
|
439
|
+
<td class="oblique">$.net</td>
|
|
440
|
+
</tr>
|
|
441
|
+
<tr>
|
|
442
|
+
<td><a href="$.db.SQLException.html">SQLException</a></td>
|
|
443
|
+
<td class="oblique">$.db</td>
|
|
444
|
+
</tr>
|
|
445
|
+
<tr>
|
|
446
|
+
<td><a href="$.hdb.SQLException.html">SQLException</a></td>
|
|
447
|
+
<td class="oblique">$.hdb</td>
|
|
448
|
+
</tr>
|
|
449
|
+
<tr>
|
|
450
|
+
<td><a href="$.security.Store.html">Store</a></td>
|
|
451
|
+
<td class="oblique">$.security</td>
|
|
452
|
+
</tr>
|
|
453
|
+
<tr>
|
|
454
|
+
<td><a href="$.web.TupelList.html">TupelList</a></td>
|
|
455
|
+
<td class="oblique">$.web</td>
|
|
456
|
+
</tr>
|
|
457
|
+
<tr>
|
|
458
|
+
<td><a href="$.web.WebEntityRequest.html">WebEntityRequest</a></td>
|
|
459
|
+
<td class="oblique">$.web</td>
|
|
460
|
+
</tr>
|
|
461
|
+
<tr>
|
|
462
|
+
<td><a href="$.web.WebEntityResponse.html">WebEntityResponse</a></td>
|
|
463
|
+
<td class="oblique">$.web</td>
|
|
464
|
+
</tr>
|
|
465
|
+
<tr>
|
|
466
|
+
<td><a href="$.web.WebRequest.html">WebRequest</a></td>
|
|
467
|
+
<td class="oblique">$.web</td>
|
|
468
|
+
</tr>
|
|
469
|
+
<tr>
|
|
470
|
+
<td><a href="$.web.WebResponse.html">WebResponse</a></td>
|
|
471
|
+
<td class="oblique">$.web</td>
|
|
472
|
+
</tr>
|
|
473
|
+
<tr>
|
|
474
|
+
<td><a href="$.util.Zip.html">Zip</a></td>
|
|
475
|
+
<td class="oblique">$.util</td>
|
|
476
|
+
</tr>
|
|
477
|
+
</table>
|
|
478
|
+
<h3>Namespaces</h3>
|
|
479
|
+
<ul>
|
|
480
|
+
<li><a href="$.html"><span class="oblique"></span>$</a></li>
|
|
481
|
+
<li><a href="$.db.html"><span class="oblique">$.</span>db</a></li>
|
|
482
|
+
<li><a href="$.hdb.html"><span class="oblique">$.</span>hdb</a></li>
|
|
483
|
+
<li><a href="$.jobs.html"><span class="oblique">$.</span>jobs</a></li>
|
|
484
|
+
<li><a href="$.net.html"><span class="oblique">$.</span>net</a></li>
|
|
485
|
+
<li><a href="$.net.http.html"><span class="oblique">$.net.</span>http</a></li>
|
|
486
|
+
<li><a href="$.security.html"><span class="oblique">$.</span>security</a></li>
|
|
487
|
+
<li><a href="$.security.crypto.html"><span class="oblique">$.security.</span>crypto</a></li>
|
|
488
|
+
<li><a href="$.security.x509.html"><span class="oblique">$.security.</span>x509</a></li>
|
|
489
|
+
<li><a href="$.text.html"><span class="oblique">$.</span>text</a></li>
|
|
490
|
+
<li><a href="$.text.analysis.html"><span class="oblique">$.text.</span>analysis</a></li>
|
|
491
|
+
<li><a href="$.text.mining.html"><span class="oblique">$.text.</span>mining</a></li>
|
|
492
|
+
<li><a href="$.trace.html"><span class="oblique">$.</span>trace</a></li>
|
|
493
|
+
<li><a href="$.util.html"><span class="oblique">$.</span>util</a></li>
|
|
494
|
+
<li><a href="$.util.codec.html"><span class="oblique">$.util.</span>codec</a></li>
|
|
495
|
+
<li><a href="$.util.compression.html"><span class="oblique">$.util.</span>compression</a></li>
|
|
496
|
+
<li><a href="$.util.sql.html"><span class="oblique">$.util.</span>sql</a></li>
|
|
497
|
+
<li><a href="$.web.html"><span class="oblique">$.</span>web</a></li>
|
|
498
|
+
</ul>
|
|
499
|
+
</nav>
|
|
500
|
+
<br clear="both">
|
|
501
|
+
<footer>
|
|
502
|
+
<a href="Copyright-SAP.html">Copyright</a>
|
|
503
|
+
&
|
|
504
|
+
<a href="Disclaimer-SAP.html">Disclaimer</a>
|
|
505
|
+
</footer>
|
|
506
|
+
<script>prettyPrint();</script>
|
|
507
|
+
<script src="scripts/linenumber.js"></script>
|
|
508
|
+
|
|
509
|
+
</body>
|
|
510
|
+
|
|
511
|
+
</html>
|