Get the style color and number just once
[LibreOffice.git] / offapi / com / sun / star / sdbc / BatchUpdateException.idl
blob1b9809360e27838479a39c387a34ff5402868343
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 module com { module sun { module star { module sdbc {
23 /** is thrown when an error occurs during a batch update operation.
26 <p>In addition to the information provided by
27 com::sun::star::sdbc::SQLException
28 , a
29 <code>BatchUpdateException</code>
30 provides the update counts for all commands
31 that were executed successfully during the batch update, that is, all commands
32 that were executed before the error occurred. The order of elements in an
33 array of update counts corresponds to the order in which commands were added
34 to the batch.</p>
36 published exception BatchUpdateException: SQLException
39 /** is an array of
40 <code>long</code>
41 , with each element
42 indicating the update count for a SQL command that executed
43 successfully before the exception was thrown.
45 sequence<long> UpdateCounts;
49 }; }; }; };
51 /*===========================================================================
52 ===========================================================================*/
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */