LibreOffice
LibreOffice 24.8 SDK API Reference
Loading...
Searching...
No Matches
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)
117 raises (com::sun::star::sdbc::SQLException);
118
125 void updateTime([in]com::sun::star::util::Time x)
126 raises (com::sun::star::sdbc::SQLException);
127
134 void updateTimestamp([in]com::sun::star::util::DateTime x)
135 raises (com::sun::star::sdbc::SQLException);
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)
166 raises (com::sun::star::sdbc::SQLException);
167
176 void updateNumericObject([in]any x, [in]long scale)
177 raises (com::sun::star::sdbc::SQLException);
178};
179
180
181}; }; }; };
182
183/*===========================================================================
184===========================================================================*/
185
186/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
is used to update data which is collected in a row.
Definition XColumnUpdate.idl:30
void updateNull()
gives a nullable column a null value.
base interface of all UNO interfaces
Definition generated_idl_chapter_refs.idl:452
Definition Ambiguous.idl:20