diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:04:08 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 01:04:08 +0000 |
commit | aa4724edb819c4226229bc323768f40fc233a1cd (patch) | |
tree | 45f987ce9dfc9d2cd52d5a31677d3685a27c9797 /connectivity/source/inc/java/sql | |
parent | a3a39986a76714842c9515adfe741fd7d5119c55 (diff) |
INTEGRATION: CWS warnings01 (1.8.30); FILE MERGED
2005/11/21 10:07:58 fs 1.8.30.1: #i57457# warning-free code on unx*
Diffstat (limited to 'connectivity/source/inc/java/sql')
-rw-r--r-- | connectivity/source/inc/java/sql/PreparedStatement.hxx | 9 | ||||
-rw-r--r-- | connectivity/source/inc/java/sql/ResultSet.hxx | 7 |
2 files changed, 12 insertions, 4 deletions
diff --git a/connectivity/source/inc/java/sql/PreparedStatement.hxx b/connectivity/source/inc/java/sql/PreparedStatement.hxx index a628afdbd8..76bf12588b 100644 --- a/connectivity/source/inc/java/sql/PreparedStatement.hxx +++ b/connectivity/source/inc/java/sql/PreparedStatement.hxx @@ -4,9 +4,9 @@ * * $RCSfile: PreparedStatement.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 07:22:18 $ + * last change: $Author: hr $ $Date: 2006-06-20 02:03:56 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -124,6 +124,11 @@ namespace connectivity virtual ::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL executeBatch( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); // XResultSetMetaDataSupplier virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); + + public: + using java_sql_Statement_Base::executeQuery; + using java_sql_Statement_Base::executeUpdate; + using java_sql_Statement_Base::execute; }; } #endif // _CONNECTIVITY_JAVA_SQL_PREPAREDSTATEMENT_HXX_ diff --git a/connectivity/source/inc/java/sql/ResultSet.hxx b/connectivity/source/inc/java/sql/ResultSet.hxx index 4b74387f31..456efdd0bd 100644 --- a/connectivity/source/inc/java/sql/ResultSet.hxx +++ b/connectivity/source/inc/java/sql/ResultSet.hxx @@ -4,9 +4,9 @@ * * $RCSfile: ResultSet.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 07:22:51 $ + * last change: $Author: hr $ $Date: 2006-06-20 02:04:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -234,6 +234,9 @@ namespace connectivity 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); // XColumnLocate virtual sal_Int32 SAL_CALL findColumn( const ::rtl::OUString& columnName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException); + + public: + using ::cppu::OPropertySetHelper::getFastPropertyValue; }; } #endif // _CONNECTIVITY_JAVA_SQL_RESULTSET_HXX_ |