1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 #ifndef _DBA_COREAPI_PREPAREDSTATEMENT_HXX_ 24 #define _DBA_COREAPI_PREPAREDSTATEMENT_HXX_ 25 26 #ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ 27 #include <com/sun/star/lang/XServiceInfo.hpp> 28 #endif 29 #ifndef _COM_SUN_STAR_SDBC_XPREPAREDSTATEMENT_HPP_ 30 #include <com/sun/star/sdbc/XPreparedStatement.hpp> 31 #endif 32 #ifndef _COM_SUN_STAR_SDBCX_XCOLUMNSSUPPLIER_HPP_ 33 #include <com/sun/star/sdbcx/XColumnsSupplier.hpp> 34 #endif 35 #ifndef _COM_SUN_STAR_SDBC_XPARAMETERS_HPP_ 36 #include <com/sun/star/sdbc/XParameters.hpp> 37 #endif 38 #ifndef _COM_SUN_STAR_SDBC_XRESULTSETMETADATASUPPLIER_HPP_ 39 #include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp> 40 #endif 41 #ifndef _COM_SUN_STAR_SDBC_XPARAMETERS_HPP_ 42 #include <com/sun/star/sdbc/XParameters.hpp> 43 #endif 44 #ifndef _DBA_COREAPI_STATEMENT_HXX_ 45 #include <statement.hxx> 46 #endif 47 #ifndef _DBA_COREAPI_COLUMN_HXX_ 48 #include <column.hxx> 49 #endif 50 51 namespace dbaccess 52 { 53 //************************************************************ 54 // OPreparedStatement 55 //************************************************************ 56 class OPreparedStatement : public OStatementBase, 57 public ::com::sun::star::sdbc::XPreparedStatement, 58 public ::com::sun::star::sdbc::XParameters, 59 public ::com::sun::star::sdbc::XResultSetMetaDataSupplier, 60 public ::com::sun::star::sdbcx::XColumnsSupplier, 61 public ::com::sun::star::lang::XServiceInfo 62 { 63 protected: 64 OColumns* m_pColumns; 65 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XParameters > m_xAggregateAsParameters; 66 67 public: 68 OPreparedStatement(const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > & _xConn, 69 const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > & _xStatement); 70 virtual ~OPreparedStatement(); 71 72 // ::com::sun::star::lang::XTypeProvider 73 virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(); 74 virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId(); 75 76 // ::com::sun::star::uno::XInterface 77 virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ); 78 virtual void SAL_CALL acquire() throw(); 79 virtual void SAL_CALL release() throw(); 80 81 // ::com::sun::star::lang::XServiceInfo 82 virtual ::rtl::OUString SAL_CALL getImplementationName( ); 83 virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ); 84 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ); 85 86 // OComponentHelper 87 virtual void SAL_CALL disposing(void); 88 89 // ::com::sun::star::sdbc::XPreparedStatement 90 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL executeQuery( ); 91 virtual sal_Int32 SAL_CALL executeUpdate( ); 92 virtual sal_Bool SAL_CALL execute( ); 93 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL getConnection( ); 94 95 // ::com::sun::star::sdbcx::XColumnsSupplier 96 virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > SAL_CALL getColumns( ); 97 98 // ::com::sun::star::sdbc::XResultSetMetaDataSupplier 99 virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > SAL_CALL getMetaData( ); 100 101 // ::com::sun::star::sdbc::XParameters 102 virtual void SAL_CALL setNull( sal_Int32 parameterIndex, sal_Int32 sqlType ); 103 virtual void SAL_CALL setObjectNull( sal_Int32 parameterIndex, sal_Int32 sqlType, const ::rtl::OUString& typeName ); 104 virtual void SAL_CALL setBoolean( sal_Int32 parameterIndex, sal_Bool x ); 105 virtual void SAL_CALL setByte( sal_Int32 parameterIndex, sal_Int8 x ); 106 virtual void SAL_CALL setShort( sal_Int32 parameterIndex, sal_Int16 x ); 107 virtual void SAL_CALL setInt( sal_Int32 parameterIndex, sal_Int32 x ); 108 virtual void SAL_CALL setLong( sal_Int32 parameterIndex, sal_Int64 x ); 109 virtual void SAL_CALL setFloat( sal_Int32 parameterIndex, float x ); 110 virtual void SAL_CALL setDouble( sal_Int32 parameterIndex, double x ); 111 virtual void SAL_CALL setString( sal_Int32 parameterIndex, const ::rtl::OUString& x ); 112 virtual void SAL_CALL setBytes( sal_Int32 parameterIndex, const ::com::sun::star::uno::Sequence< sal_Int8 >& x ); 113 virtual void SAL_CALL setDate( sal_Int32 parameterIndex, const ::com::sun::star::util::Date& x ); 114 virtual void SAL_CALL setTime( sal_Int32 parameterIndex, const ::com::sun::star::util::Time& x ); 115 virtual void SAL_CALL setTimestamp( sal_Int32 parameterIndex, const ::com::sun::star::util::DateTime& x ); 116 virtual void SAL_CALL setBinaryStream( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ); 117 virtual void SAL_CALL setCharacterStream( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& x, sal_Int32 length ); 118 virtual void SAL_CALL setObject( sal_Int32 parameterIndex, const ::com::sun::star::uno::Any& x ); 119 virtual void SAL_CALL setObjectWithInfo( sal_Int32 parameterIndex, const ::com::sun::star::uno::Any& x, sal_Int32 targetSqlType, sal_Int32 scale ); 120 virtual void SAL_CALL setRef( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef >& x ); 121 virtual void SAL_CALL setBlob( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob >& x ); 122 virtual void SAL_CALL setClob( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob >& x ); 123 virtual void SAL_CALL setArray( sal_Int32 parameterIndex, const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray >& x ); 124 virtual void SAL_CALL clearParameters( ); 125 }; 126 } 127 #endif // _DBA_COREAPI_PREPAREDSTATEMENT_HXX_ 128