summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_statement.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'mysqlc/source/mysqlc_statement.hxx')
-rw-r--r--mysqlc/source/mysqlc_statement.hxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/mysqlc/source/mysqlc_statement.hxx b/mysqlc/source/mysqlc_statement.hxx
index 8a7fb500a0a8..2e0aea26321c 100644
--- a/mysqlc/source/mysqlc_statement.hxx
+++ b/mysqlc/source/mysqlc_statement.hxx
@@ -30,7 +30,7 @@ namespace connectivity
using ::com::sun::star::uno::RuntimeException;
using ::rtl::OUString;
- typedef ::cppu::WeakComponentImplHelper5< ::com::sun::star::sdbc::XStatement,
+ typedef ::cppu::WeakComponentImplHelper5< ::com::sun::star::sdbc::XStatement,
::com::sun::star::sdbc::XWarningsSupplier,
::com::sun::star::util::XCancellable,
::com::sun::star::sdbc::XCloseable,
@@ -56,11 +56,11 @@ namespace connectivity
SQLWarning m_aLastWarning;
protected:
- ::std::list< OUString> m_aBatchList;
+ ::std::list< OUString> m_aBatchList;
- OConnection* m_pConnection; // The owning Connection object
+ OConnection* m_pConnection; // The owning Connection object
- sql::Statement *cppStatement;
+ sql::Statement *cppStatement;
protected:
void disposeResultSet();
@@ -91,9 +91,9 @@ namespace connectivity
void SAL_CALL disposing(void);
// XInterface
- void SAL_CALL release() throw();
+ void SAL_CALL release() throw();
- void SAL_CALL acquire() throw();
+ void SAL_CALL acquire() throw();
// XInterface
Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type & rType)
@@ -121,15 +121,15 @@ namespace connectivity
throw(SQLException, RuntimeException);
// XWarningsSupplier
- Any SAL_CALL getWarnings() throw(SQLException, RuntimeException);
+ Any SAL_CALL getWarnings() throw(SQLException, RuntimeException);
- void SAL_CALL clearWarnings() throw(SQLException, RuntimeException);
+ void SAL_CALL clearWarnings() throw(SQLException, RuntimeException);
// XCancellable
- void SAL_CALL cancel() throw(RuntimeException);
+ void SAL_CALL cancel() throw(RuntimeException);
// XCloseable
- void SAL_CALL close() throw(SQLException, RuntimeException);
+ void SAL_CALL close() throw(SQLException, RuntimeException);
// XMultipleResults
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > SAL_CALL getResultSet()
@@ -137,7 +137,7 @@ namespace connectivity
sal_Int32 SAL_CALL getUpdateCount() throw(SQLException, RuntimeException);
- sal_Bool SAL_CALL getMoreResults() throw(SQLException, RuntimeException);
+ sal_Bool SAL_CALL getMoreResults() throw(SQLException, RuntimeException);
// other methods
OConnection* getOwnConnection() const { return m_pConnection;}
@@ -147,7 +147,7 @@ namespace connectivity
};
- class OStatement : public OCommonStatement,
+ class OStatement : public OCommonStatement,
public ::com::sun::star::sdbc::XBatchExecution,
public ::com::sun::star::lang::XServiceInfo
@@ -163,14 +163,14 @@ namespace connectivity
Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType )
throw(RuntimeException);
- void SAL_CALL acquire() throw();
- void SAL_CALL release() throw();
+ void SAL_CALL acquire() throw();
+ void SAL_CALL release() throw();
// XBatchExecution
void SAL_CALL addBatch(const OUString& sql)
throw(SQLException, RuntimeException);
- void SAL_CALL clearBatch() throw(SQLException, RuntimeException);
+ void SAL_CALL clearBatch() throw(SQLException, RuntimeException);
::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL executeBatch()
throw(SQLException, RuntimeException);