13 m_writeStmt =
nullptr;
29 this->checkConnection();
32 m_writeStmt = m_conn->createStatement();
33 m_writeStmt->setSQL(
"INSERT INTO ECAL_JBH4_Cycle (cycle_id, jbh4_configuration_id ) " 36 throw(std::runtime_error(
"ODJBH4Cycle::prepareWrite(): "+e.getMessage()));
43 this->checkConnection();
48 m_writeStmt->setInt(1, this->
getId());
49 m_writeStmt->setInt(2, this->getJBH4ConfigurationID());
51 m_writeStmt->executeUpdate();
55 throw(std::runtime_error(
"ODJBH4Cycle::writeDB: "+e.getMessage()));
59 if (!this->fetchID()) {
60 throw(std::runtime_error(
"ODJBH4Cycle::writeDB: Failed to write"));
79 this->checkConnection();
82 Statement* stmt = m_conn->createStatement();
83 stmt->setSQL(
"SELECT cycle_id, jbh4_configuration_id FROM ecal_jbh4_cycle " 84 "WHERE cycle_id = :1 ");
85 stmt->setInt(1, m_ID);
86 ResultSet* rset = stmt->executeQuery();
89 m_ID = rset->getInt(1);
90 m_jbh4_config_id = rset->getInt(2);
94 m_conn->terminateStatement(stmt);
96 throw(std::runtime_error(
"ODJBH4Cycle::fetchID: "+e.getMessage()));
107 this->checkConnection();
111 Statement* stmt = m_conn->createStatement();
112 stmt->setSQL(
"SELECT cycle_id, jbh4_configuration_id FROM ecal_jbh4_cycle " 113 "WHERE cycle_id = :1 ");
115 ResultSet* rset = stmt->executeQuery();
118 m_ID = rset->getInt(1);
119 m_jbh4_config_id = rset->getInt(2);
123 m_conn->terminateStatement(stmt);
125 throw(std::runtime_error(
"ODJBH4Cycle::fetchID: "+e.getMessage()));
134 this->checkConnection();
138 throw(std::runtime_error(
"ODJBH4Config::fetchData(): no Id defined for this ODJBH4Config "));
143 m_readStmt->setSQL(
"SELECT jbh4_configuration_id FROM ecal_jbh4_cycle " 144 "WHERE cycle_id = :1 ");
146 m_readStmt->setInt(1,
result->getId());
147 ResultSet* rset = m_readStmt->executeQuery();
151 result->setJBH4ConfigurationID( rset->getInt(1) );
154 throw(std::runtime_error(
"ODJBH4Cycle::fetchData(): "+e.getMessage()));
166 terminateWriteStatement();
167 }
catch (std::runtime_error &
e) {
172 throw(std::runtime_error(
"EcalCondDBInterface::insertDataSet: Unknown exception caught"));
static unsigned int getId()
int fetchID() noexcept(false)
void writeDB() noexcept(false)
void setByID(int id) noexcept(false)
void insertConfig() noexcept(false)
oracle::occi::Statement Statement
void prepareWrite() noexcept(false) override
oracle::occi::SQLException SQLException
void fetchData(ODJBH4Cycle *result) noexcept(false)