Skip to content
Snippets Groups Projects
Commit e8f9e1a5 authored by Steven Murray's avatar Steven Murray
Browse files

Deleted unused OcciRset::get() and operator->()

parent 40d41b8f
No related branches found
No related tags found
No related merge requests found
...@@ -125,20 +125,6 @@ void OcciRset::close() { ...@@ -125,20 +125,6 @@ void OcciRset::close() {
} }
} }
//------------------------------------------------------------------------------
// get
//------------------------------------------------------------------------------
oracle::occi::ResultSet *OcciRset::get() const {
return m_rset;
}
//------------------------------------------------------------------------------
// operator->
//------------------------------------------------------------------------------
oracle::occi::ResultSet *OcciRset::operator->() const {
return get();
}
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// columnOptionalString // columnOptionalString
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
......
...@@ -99,22 +99,6 @@ public: ...@@ -99,22 +99,6 @@ public:
*/ */
virtual optional<uint64_t> columnOptionalUint64(const std::string &colName) const override; virtual optional<uint64_t> columnOptionalUint64(const std::string &colName) const override;
/**
* Returns the underlying OCCI result set.
*
* This method will always return a valid pointer.
*
* @return The underlying OCCI result set.
*/
oracle::occi::ResultSet *get() const;
/**
* An alias for the get() method.
*
* @return The underlying OCCI result set.
*/
oracle::occi::ResultSet *operator->() const;
private: private:
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment