CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ConnectionManager.h
Go to the documentation of this file.
1 #ifndef ConnectionManager_hh_included
2 #define ConnectionManager_hh_included
3 
4 #include <string>
5 
6 namespace oracle {
7  namespace occi {
8  class Connection;
9  class Environment;
10  class Statement;
11  }
12 }
13 
15  public:
17  bool connect();
18  oracle::occi::Statement* getStatement(const std::string& query);
19  void disconnect();
20  private:
21  oracle::occi::Environment *env;
22  oracle::occi::Connection *conn;
23 };
24 
25 #endif
oracle::occi::Connection * conn
oracle::occi::Statement * getStatement(const std::string &query)
tuple query
Definition: o2o.py:269
oracle::occi::Environment * env