Line data Source code
1 : #ifndef INCLUDED_COM_SUN_STAR_SDBC_XCONNECTION_HDL
2 : #define INCLUDED_COM_SUN_STAR_SDBC_XCONNECTION_HDL
3 :
4 : #include "sal/config.h"
5 :
6 : namespace com { namespace sun { namespace star { namespace container { class XNameAccess; } } } }
7 : #include "com/sun/star/sdbc/SQLException.hdl"
8 : #include "com/sun/star/sdbc/XCloseable.hdl"
9 : namespace com { namespace sun { namespace star { namespace sdbc { class XDatabaseMetaData; } } } }
10 : namespace com { namespace sun { namespace star { namespace sdbc { class XPreparedStatement; } } } }
11 : namespace com { namespace sun { namespace star { namespace sdbc { class XStatement; } } } }
12 : #include "com/sun/star/uno/RuntimeException.hdl"
13 : #include "com/sun/star/uno/Reference.h"
14 : #include "cppu/macros.hxx"
15 : #include "rtl/ustring.hxx"
16 : #include "sal/types.h"
17 :
18 : namespace com { namespace sun { namespace star { namespace uno { class Type; } } } }
19 :
20 : namespace com { namespace sun { namespace star { namespace sdbc {
21 :
22 90 : class SAL_NO_VTABLE XConnection : public css::sdbc::XCloseable
23 : {
24 : public:
25 :
26 : // Methods
27 : virtual ::com::sun::star::uno::Reference< css::sdbc::XStatement > SAL_CALL createStatement() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
28 : virtual ::com::sun::star::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareStatement( const ::rtl::OUString& sql ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
29 : virtual ::com::sun::star::uno::Reference< css::sdbc::XPreparedStatement > SAL_CALL prepareCall( const ::rtl::OUString& sql ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
30 : virtual ::rtl::OUString SAL_CALL nativeSQL( const ::rtl::OUString& sql ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
31 : virtual void SAL_CALL setAutoCommit( ::sal_Bool autoCommit ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
32 : virtual ::sal_Bool SAL_CALL getAutoCommit() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
33 : virtual void SAL_CALL commit() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
34 : virtual void SAL_CALL rollback() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
35 : virtual ::sal_Bool SAL_CALL isClosed() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
36 : virtual ::com::sun::star::uno::Reference< css::sdbc::XDatabaseMetaData > SAL_CALL getMetaData() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
37 : virtual void SAL_CALL setReadOnly( ::sal_Bool readOnly ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
38 : virtual ::sal_Bool SAL_CALL isReadOnly() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
39 : virtual void SAL_CALL setCatalog( const ::rtl::OUString& catalog ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
40 : virtual ::rtl::OUString SAL_CALL getCatalog() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
41 : virtual void SAL_CALL setTransactionIsolation( ::sal_Int32 level ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
42 : virtual ::sal_Int32 SAL_CALL getTransactionIsolation() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
43 : virtual ::com::sun::star::uno::Reference< css::container::XNameAccess > SAL_CALL getTypeMap() /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
44 : virtual void SAL_CALL setTypeMap( const ::com::sun::star::uno::Reference< css::container::XNameAccess >& typeMap ) /* throw (css::sdbc::SQLException, ::com::sun::star::uno::RuntimeException) */ = 0;
45 :
46 : static inline ::com::sun::star::uno::Type const & SAL_CALL static_type(void * = 0);
47 :
48 : protected:
49 88 : ~XConnection() throw () {} // avoid warnings about virtual members and non-virtual dtor
50 : };
51 :
52 :
53 : inline ::com::sun::star::uno::Type const & cppu_detail_getUnoType(SAL_UNUSED_PARAMETER css::sdbc::XConnection const *);
54 : } } } }
55 :
56 : inline ::com::sun::star::uno::Type const & SAL_CALL getCppuType(const ::com::sun::star::uno::Reference< css::sdbc::XConnection > *) SAL_THROW(());
57 :
58 : #endif
|