LibreOffice
LibreOffice 7.2 SDK API Reference
XParameters.idl
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#ifndef __com_sun_star_sdbc_XParameters_idl__
20#define __com_sun_star_sdbc_XParameters_idl__
21
23
25
27
29
30 module com { module sun { module star { module io {
31 published interface XInputStream;
32};};};};
33
35
36 module com { module sun { module star { module sdbc {
37
38 published interface XRef;
39 published interface XArray;
40 published interface XBlob;
41 published interface XClob;
42
43
77{
78
81 void setNull([in]long parameterIndex,
82 [in]long sqlType) raises (SQLException);
83
113 void setObjectNull([in]long parameterIndex,
114 [in]long sqlType,
115 [in]string typeName) raises (SQLException);
116
126 void setBoolean([in]long parameterIndex, [in]boolean x)
127 raises (SQLException);
128
138 void setByte([in]long parameterIndex, [in]byte x) raises (SQLException);
139
149 void setShort([in]long parameterIndex, [in]short x) raises (SQLException);
150
160 void setInt([in]long parameterIndex, [in]long x) raises (SQLException);
161
171 void setLong([in]long parameterIndex, [in]hyper x) raises (SQLException);
172
182 void setFloat([in]long parameterIndex, [in]float x) raises (SQLException);
183
193 void setDouble([in]long parameterIndex, [in]double x) raises (SQLException);
194
206 void setString([in]long parameterIndex, [in]string x) raises (SQLException);
207
219 void setBytes([in]long parameterIndex, [in]sequence<byte> x)
220 raises (SQLException);
221
231 void setDate([in]long parameterIndex, [in]com::sun::star::util::Date x)
232 raises (SQLException);
233
243 void setTime([in]long parameterIndex, [in]com::sun::star::util::Time x)
244 raises (SQLException);
245
256 void setTimestamp([in]long parameterIndex,
258
274 void setBinaryStream([in]long parameterIndex,
276 [in]long length) raises (SQLException);
277
293 void setCharacterStream([in]long parameterIndex,
295 [in]long length) raises (SQLException);
296
319 void setObject([in]long parameterIndex, [in]any x)
320 raises (SQLException);
321
355 void setObjectWithInfo([in]long parameterIndex,
356 [in]any x, [in]long targetSqlType, [in]long scale)
357 raises (SQLException);
358
367 void setRef ([in]long parameterIndex, [in]XRef x) raises (SQLException);
368
377 void setBlob ([in]long parameterIndex, [in]XBlob x) raises (SQLException);
378
387 void setClob ([in]long parameterIndex, [in]XClob x) raises (SQLException);
388
397 void setArray ([in]long parameterIndex, [in]XArray x) raises (SQLException);
398
399
413};
414
415
416}; }; }; };
417
418/*===========================================================================
419===========================================================================*/
420#endif
421
422/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
is an exception that provides information on a database access error.
Definition: SQLException.idl:45
This is the basic interface to read data from a stream.
Definition: XInputStream.idl:38
is used for mapping the SQL type com::sun::star::sdbc::DataType::ARRAY.
Definition: XArray.idl:42
is the representation (mapping) of an SQL BLOB.
Definition: XBlob.idl:93
is the mapping for the SQL CLOB type.
Definition: XClob.idl:89
is used for parameter setting, commonly implemented in conjunction with PreparedStatements.
Definition: XParameters.idl:77
void setBytes([in]long parameterIndex, [in]sequence< byte > x)
sets the designated parameter to a sequence of bytes.
void setCharacterStream([in]long parameterIndex, [in]com::sun::star::io::XInputStream x, [in]long length)
sets the designated parameter to the given input stream, which will have the specified number of byte...
void setTime([in]long parameterIndex, [in]com::sun::star::util::Time x)
sets the designated parameter to a time value.
void setObject([in]long parameterIndex, [in]any x)
sets the value of a parameter using an any.
void setArray([in]long parameterIndex, [in]XArray x)
sets an Array parameter.
void setBinaryStream([in]long parameterIndex, [in]com::sun::star::io::XInputStream x, [in]long length)
sets the designated parameter to the given input stream, which will have the specified number of byte...
void setClob([in]long parameterIndex, [in]XClob x)
sets a CLOB parameter.
void setBlob([in]long parameterIndex, [in]XBlob x)
sets a BLOB parameter.
void setTimestamp([in]long parameterIndex, [in]com::sun::star::util::DateTime x)
sets the designated parameter to a datetime value.
void setDouble([in]long parameterIndex, [in]double x)
sets the designated parameter to a double value.
void setRef([in]long parameterIndex, [in]XRef x)
sets a REF(&lt;structured-type&gt;) parameter.
void setObjectNull([in]long parameterIndex, [in]long sqlType, [in]string typeName)
sets the designated parameter to SQL NULL.
void setNull([in]long parameterIndex, [in]long sqlType)
sets the designated parameter to SQL NULL.
void clearParameters()
clears the current parameter values immediately.
void setShort([in]long parameterIndex, [in]short x)
sets the designated parameter to a short value.
void setLong([in]long parameterIndex, [in]hyper x)
sets the designated parameter to a hyper value.
void setObjectWithInfo([in]long parameterIndex, [in]any x, [in]long targetSqlType, [in]long scale)
set a value from the Datatype ANY for a parameter.
void setByte([in]long parameterIndex, [in]byte x)
sets the designated parameter to a byte value.
void setDate([in]long parameterIndex, [in]com::sun::star::util::Date x)
sets the designated parameter to a date value.
void setBoolean([in]long parameterIndex, [in]boolean x)
sets the designated parameter to a boolean value.
void setFloat([in]long parameterIndex, [in]float x)
sets the designated parameter to a float value.
void setString([in]long parameterIndex, [in]string x)
sets the designated parameter to a string value.
void setInt([in]long parameterIndex, [in]long x)
sets the designated parameter to a long value.
is the reference to a SQL structured type value in the database.
Definition: XRef.idl:35
base interface of all UNO interfaces
Definition: XInterface.idl:48
Definition: Ambiguous.idl:22
represents a combined date+time value.
Definition: DateTime.idl:29
represents a date value.
Definition: Date.idl:31
represents a time value.
Definition: Time.idl:29