Kaydet (Commit) 250864d8 authored tarafından Michael Stahl's avatar Michael Stahl

connectivity: firebird::OResultSet: convert to C++98

Change-Id: I9036539204789d0886a51fcbc3d821012cc9eaee
üst 3f29153a
...@@ -58,6 +58,11 @@ OResultSet::OResultSet(OConnection* pConnection, ...@@ -58,6 +58,11 @@ OResultSet::OResultSet(OConnection* pConnection,
XSQLDA* pSqlda) XSQLDA* pSqlda)
: OResultSet_BASE(pConnection->getMutex()) : OResultSet_BASE(pConnection->getMutex())
, OPropertyContainer(OResultSet_BASE::rBHelper) , OPropertyContainer(OResultSet_BASE::rBHelper)
, m_bIsBookmarkable(false)
, m_nFetchSize(1)
, m_nResultSetType(::com::sun::star::sdbc::ResultSetType::FORWARD_ONLY)
, m_nFetchDirection(::com::sun::star::sdbc::FetchDirection::FORWARD)
, m_nResultSetConcurrency(::com::sun::star::sdbc::ResultSetConcurrency::READ_ONLY)
, m_pConnection(pConnection) , m_pConnection(pConnection)
, m_xStatement(xStatement) , m_xStatement(xStatement)
, m_xMetaData(0) , m_xMetaData(0)
......
...@@ -67,11 +67,11 @@ namespace connectivity ...@@ -67,11 +67,11 @@ namespace connectivity
public ::comphelper::OPropertyArrayUsageHelper<OResultSet> public ::comphelper::OPropertyArrayUsageHelper<OResultSet>
{ {
private: private:
sal_Bool m_bIsBookmarkable = sal_False; sal_Bool m_bIsBookmarkable;
sal_Int32 m_nFetchSize = 1; sal_Int32 m_nFetchSize;
sal_Int32 m_nResultSetType = ::com::sun::star::sdbc::ResultSetType::FORWARD_ONLY; sal_Int32 m_nResultSetType;
sal_Int32 m_nFetchDirection = ::com::sun::star::sdbc::FetchDirection::FORWARD; sal_Int32 m_nFetchDirection;
sal_Int32 m_nResultSetConcurrency = ::com::sun::star::sdbc::ResultSetConcurrency::READ_ONLY; sal_Int32 m_nResultSetConcurrency;
protected: protected:
OConnection* m_pConnection; OConnection* m_pConnection;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment