1 /*************************************************************************
3 * $RCSfile: pq_fakedupdateableresultset.hxx,v $
7 * last change: $Author: jbu $ $Date: 2004/05/09 19:47:14 $
9 * The Contents of this file are made available subject to the terms of
10 * either of the following licenses
12 * - GNU Lesser General Public License Version 2.1
13 * - Sun Industry Standards Source License Version 1.1
15 * Sun Microsystems Inc., October, 2000
17 * GNU Lesser General Public License Version 2.1
18 * =============================================
19 * Copyright 2000 by Sun Microsystems, Inc.
20 * 901 San Antonio Road, Palo Alto, CA 94303, USA
22 * This library is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU Lesser General Public
24 * License version 2.1, as published by the Free Software Foundation.
26 * This library is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29 * Lesser General Public License for more details.
31 * You should have received a copy of the GNU Lesser General Public
32 * License along with this library; if not, write to the Free Software
33 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
37 * Sun Industry Standards Source License Version 1.1
38 * =================================================
39 * The contents of this file are subject to the Sun Industry Standards
40 * Source License Version 1.1 (the "License"); You may not use this file
41 * except in compliance with the License. You may obtain a copy of the
42 * License at http://www.openoffice.org/license.html.
44 * Software provided under this License is provided on an "AS IS" basis,
45 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
46 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
47 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
48 * See the License for the specific provisions governing your rights and
49 * obligations concerning the Software.
51 * The Initial Developer of the Original Code is: Joerg Budischewski
53 * Copyright: 2000 by Sun Microsystems, Inc.
55 * All Rights Reserved.
57 * Contributor(s): Joerg Budischewski
60 ************************************************************************/
61 #ifndef PG_UPDATEABLERESULTSET_HXX_
62 #define PG_UPDATEABLERESULTSET_HXX_
64 #include <com/sun/star/sdbc/XResultSetUpdate.hpp>
65 #include <com/sun/star/sdbc/XRowUpdate.hpp>
67 #include "pq_resultset.hxx"
69 namespace pq_sdbc_driver
71 /** necessary to avoid crashes in OOo, when an updateable result set is requested,
72 but cannot be delivered.
74 class FakedUpdateableResultSet
:
76 public com::sun::star::sdbc::XResultSetUpdate
,
77 public com::sun::star::sdbc::XRowUpdate
79 ::rtl::OUString m_aReason
;
82 FakedUpdateableResultSet(
83 const ::rtl::Reference
< RefCountedMutex
> & mutex
,
84 const com::sun::star::uno::Reference
< com::sun::star::uno::XInterface
> &owner
,
85 ConnectionSettings
**pSettings
,
87 const rtl::OUString
&schema
,
88 const rtl::OUString
&table
,
89 const rtl::OUString
&aReason
);
92 virtual void SAL_CALL
acquire() throw() { ResultSet::acquire(); }
93 virtual void SAL_CALL
release() throw() { ResultSet::release(); }
94 virtual com::sun::star::uno::Any SAL_CALL
queryInterface(
95 const com::sun::star::uno::Type
& reqType
)
96 throw (com::sun::star::uno::RuntimeException
);
98 public: // XTypeProvider
99 virtual com::sun::star::uno::Sequence
< com::sun::star::uno::Type
> SAL_CALL
getTypes()
100 throw( com::sun::star::uno::RuntimeException
);
101 virtual com::sun::star::uno::Sequence
< sal_Int8
> SAL_CALL
getImplementationId()
102 throw( com::sun::star::uno::RuntimeException
);
104 public: // XResultSetUpdate
105 virtual void SAL_CALL
insertRow( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
106 virtual void SAL_CALL
updateRow( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
107 virtual void SAL_CALL
deleteRow( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
108 virtual void SAL_CALL
cancelRowUpdates( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
109 virtual void SAL_CALL
moveToInsertRow( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
110 virtual void SAL_CALL
moveToCurrentRow( ) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
112 public: // XRowUpdate
113 virtual void SAL_CALL
updateNull( sal_Int32 columnIndex
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
114 virtual void SAL_CALL
updateBoolean( sal_Int32 columnIndex
, sal_Bool x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
115 virtual void SAL_CALL
updateByte( sal_Int32 columnIndex
, sal_Int8 x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
116 virtual void SAL_CALL
updateShort( sal_Int32 columnIndex
, sal_Int16 x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
117 virtual void SAL_CALL
updateInt( sal_Int32 columnIndex
, sal_Int32 x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
118 virtual void SAL_CALL
updateLong( sal_Int32 columnIndex
, sal_Int64 x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
119 virtual void SAL_CALL
updateFloat( sal_Int32 columnIndex
, float x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
120 virtual void SAL_CALL
updateDouble( sal_Int32 columnIndex
, double x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
121 virtual void SAL_CALL
updateString( sal_Int32 columnIndex
, const ::rtl::OUString
& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
122 virtual void SAL_CALL
updateBytes( sal_Int32 columnIndex
, const ::com::sun::star::uno::Sequence
< sal_Int8
>& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
123 virtual void SAL_CALL
updateDate( sal_Int32 columnIndex
, const ::com::sun::star::util::Date
& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
124 virtual void SAL_CALL
updateTime( sal_Int32 columnIndex
, const ::com::sun::star::util::Time
& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
125 virtual void SAL_CALL
updateTimestamp( sal_Int32 columnIndex
, const ::com::sun::star::util::DateTime
& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
126 virtual void SAL_CALL
updateBinaryStream( sal_Int32 columnIndex
, const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>& x
, sal_Int32 length
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
127 virtual void SAL_CALL
updateCharacterStream( sal_Int32 columnIndex
, const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>& x
, sal_Int32 length
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
128 virtual void SAL_CALL
updateObject( sal_Int32 columnIndex
, const ::com::sun::star::uno::Any
& x
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
129 virtual void SAL_CALL
updateNumericObject( sal_Int32 columnIndex
, const ::com::sun::star::uno::Any
& x
, sal_Int32 scale
) throw (::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);