summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/file/FStatement.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-07-30 07:53:02 +0000
committerOcke Janssen <oj@openoffice.org>2001-07-30 07:53:02 +0000
commit503986990c7410000c336f934c911bdc4924d6fb (patch)
tree417ad1133fe68d9d5002b9686240fcc0eaa9f0ce /connectivity/source/drivers/file/FStatement.cxx
parentc7f6878d5904ea16554b58b87b4636a9d4484577 (diff)
#90015# use ORowSetValue as const ref
Diffstat (limited to 'connectivity/source/drivers/file/FStatement.cxx')
-rw-r--r--connectivity/source/drivers/file/FStatement.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/connectivity/source/drivers/file/FStatement.cxx b/connectivity/source/drivers/file/FStatement.cxx
index 1f7d987fe472..2e68f8f1a596 100644
--- a/connectivity/source/drivers/file/FStatement.cxx
+++ b/connectivity/source/drivers/file/FStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FStatement.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: oj $ $Date: 2001-05-23 14:05:53 $
+ * last change: $Author: oj $ $Date: 2001-07-30 08:52:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -266,10 +266,8 @@ void OStatement_Base::setWarning (const SQLWarning &ex) throw( SQLException)
sal_Bool SAL_CALL OStatement_Base::execute( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
- checkDisposed(OStatement_BASE::rBHelper.bDisposed);
-
- Reference< XResultSet > xRS = executeQuery(sql);
+ executeQuery(sql);
return m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT || m_aSQLIterator.getStatementType() == SQL_STATEMENT_SELECT_COUNT;
}