1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_sdbc_XPreparedStatement_idl__
28 #define __com_sun_star_sdbc_XPreparedStatement_idl__
30 #ifndef __com_sun_star_uno_XInterface_idl__
31 #include
<com
/sun
/star
/uno
/XInterface.idl
>
34 #ifndef __com_sun_star_sdbc_SQLException_idl__
35 #include
<com
/sun
/star
/sdbc
/SQLException.idl
>
38 module com
{ module sun
{ module star
{ module sdbc
{
40 published
interface XConnection
;
41 published
interface XResultSet
;
44 /** provides the possibilty of executing a precompiled SQL statement.
48 A SQL statement is pre-compiled and stored in a PreparedStatement object.
49 This object can then be used to efficiently execute this statement multiple
53 published
interface XPreparedStatement
: com
::sun
::star
::uno
::XInterface
56 /** executes the SQL query in this
57 <code>PreparedStatement</code>
58 object and returns the result set generated by the query.
62 if a database access error occurs.
64 XResultSet executeQuery
() raises
(SQLException
);
65 //-------------------------------------------------------------------------
67 /** executes the SQL INSERT, UPDATE or DELETE statement in this
68 <type scope="com::sun::star::sdbc">PreparedStatement</type>
71 In addition, SQL statements that return nothing, such as
72 SQL DDL statements, can be executed.
74 either the row count for INSERT, UPDATE or DELETE statements; or 0 for SQL statements that return nothing
76 if a database access error occurs.
78 long executeUpdate
() raises
(SQLException
);
79 //-------------------------------------------------------------------------
81 /** executes any kind of SQL statement.
85 Some prepared statements return multiple results; the execute
86 method handles these complex statements as well as the simpler
87 form of statements handled by executeQuery and executeUpdate.
92 if a database access error occurs.
94 boolean execute
() raises
(SQLException
);
95 //-------------------------------------------------------------------------
98 <type scope="com::sun::star::sdbc">Connection</type>
101 <type scope="com::sun::star::sdbc">Statement</type>
104 the Connection object
106 if a database access error occurs.
108 XConnection getConnection
() raises
(SQLException
);
111 //=============================================================================
115 /*===========================================================================
116 ===========================================================================*/