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