12 m_writeStmt =
nullptr;
22 this->checkConnection();
25 m_writeStmt = m_conn->createStatement();
27 "INSERT INTO ECAL_TTCF_Cycle (cycle_id, ttcf_configuration_id ) " 30 throw(std::runtime_error(
"ODTTCFCycle::prepareWrite(): " +
e.getMessage()));
35 this->checkConnection();
39 m_writeStmt->setInt(1, this->
getId());
40 m_writeStmt->setInt(2, this->getTTCFConfigurationID());
42 m_writeStmt->executeUpdate();
45 throw(std::runtime_error(
"ODTTCFCycle::writeDB: " +
e.getMessage()));
49 if (!this->fetchID()) {
50 throw(std::runtime_error(
"ODTTCFCycle::writeDB: Failed to write"));
62 this->checkConnection();
65 Statement *stmt = m_conn->createStatement();
67 "SELECT cycle_id, ttcf_configuration_id FROM ecal_ttcf_cycle " 68 "WHERE cycle_id = :1 ");
69 stmt->setInt(1, m_ID);
70 ResultSet *rset = stmt->executeQuery();
73 m_ID = rset->getInt(1);
74 m_ttcf_config_id = rset->getInt(2);
78 m_conn->terminateStatement(stmt);
80 throw(std::runtime_error(
"ODTTCFCycle::fetchID: " +
e.getMessage()));
87 this->checkConnection();
90 Statement *stmt = m_conn->createStatement();
92 "SELECT cycle_id, ttcf_configuration_id FROM ecal_ttcf_cycle " 93 "WHERE cycle_id = :1 ");
95 ResultSet *rset = stmt->executeQuery();
98 m_ID = rset->getInt(1);
99 m_ttcf_config_id = rset->getInt(2);
103 m_conn->terminateStatement(stmt);
105 throw(std::runtime_error(
"ODTTCFCycle::fetchID: " +
e.getMessage()));
110 this->checkConnection();
113 if (
result->getId() == 0) {
114 throw(std::runtime_error(
"ODTTCFConfig::fetchData(): no Id defined for this ODTTCFConfig "));
119 "SELECT ttcf_configuration_id FROM ecal_ttcf_cycle " 120 "WHERE cycle_id = :1 ");
122 m_readStmt->setInt(1,
result->getId());
123 ResultSet *rset = m_readStmt->executeQuery();
127 result->setTTCFConfigurationID(rset->getInt(1));
130 throw(std::runtime_error(
"ODTTCFCycle::fetchData(): " +
e.getMessage()));
139 terminateWriteStatement();
140 }
catch (std::runtime_error &
e) {
145 throw(std::runtime_error(
"EcalCondDBInterface::insertDataSet: Unknown exception caught"));
void prepareWrite() noexcept(false) override
void setByID(int id) noexcept(false)
void writeDB() noexcept(false)
void fetchData(ODTTCFCycle *result) noexcept(false)
void insertConfig() noexcept(false)
oracle::occi::Statement Statement
static unsigned int getId()
int fetchID() noexcept(false)
oracle::occi::SQLException SQLException