LibreOffice
LibreOffice 24.2 SDK API Reference
XColumnUpdate.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 
20  module com { module sun { module star { module io {
21  published interface XInputStream;
22 };};};};
23 
24  module com { module sun { module star { module sdb {
25 
26 
30 {
31 
36  void updateNull() raises (com::sun::star::sdbc::SQLException);
37 
44  void updateBoolean([in]boolean x) raises (com::sun::star::sdbc::SQLException);
45 
52  void updateByte([in]byte x) raises (com::sun::star::sdbc::SQLException);
53 
60  void updateShort([in]short x) raises (com::sun::star::sdbc::SQLException);
61 
68  void updateInt([in]long x) raises (com::sun::star::sdbc::SQLException);
69 
76  void updateLong([in]hyper x) raises (com::sun::star::sdbc::SQLException);
77 
84  void updateFloat([in]float x) raises (com::sun::star::sdbc::SQLException);
85 
92  void updateDouble([in]double x) raises (com::sun::star::sdbc::SQLException);
93 
100  void updateString([in]string x) raises (com::sun::star::sdbc::SQLException);
101 
108  void updateBytes([in]sequence<byte> x) raises (com::sun::star::sdbc::SQLException);
109 
116  void updateDate([in]com::sun::star::util::Date x)
118 
125  void updateTime([in]com::sun::star::util::Time x)
127 
134  void updateTimestamp([in]com::sun::star::util::DateTime x)
136 
145  void updateBinaryStream([in]com::sun::star::io::XInputStream x,
146  [in]long length) raises (com::sun::star::sdbc::SQLException);
147 
156  void updateCharacterStream([in]com::sun::star::io::XInputStream x,
157  [in]long length) raises (com::sun::star::sdbc::SQLException);
158 
165  void updateObject([in]any x)
167 
176  void updateNumericObject([in]any x, [in]long scale)
178 };
179 
180 
181 }; }; }; };
182 
183 /*===========================================================================
184 ===========================================================================*/
185 
186 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
represents a date value.
Definition: Date.idl:28
represents a combined date+time value.
Definition: DateTime.idl:26
Definition: Ambiguous.idl:20
is used to update data which is collected in a row.
Definition: XColumnUpdate.idl:29
represents a time value.
Definition: Time.idl:26
This is the basic interface to read data from a stream.
Definition: XInputStream.idl:29
is an exception that provides information on a database access error.
Definition: SQLException.idl:40
base interface of all UNO interfaces
Definition: XInterface.idl:45