16 m_writeStmt =
nullptr;
35 this->checkConnection();
38 m_writeStmt = m_conn->createStatement();
39 m_writeStmt->setSQL(
"INSERT INTO dcu_lvr_temps_dat (iov_id, logic_id, " 41 "VALUES (:iov_id, :logic_id, " 43 }
catch (SQLException &
e) {
44 throw(std::runtime_error(
"DCULVRTempsDat::prepareWrite(): "+e.getMessage()));
53 this->checkConnection();
56 int iovID = iov->fetchID();
57 if (!iovID) {
throw(std::runtime_error(
"DCULVRTempsDat::writeDB: IOV not in DB")); }
59 int logicID = ecid->getLogicID();
60 if (!logicID) {
throw(std::runtime_error(
"DCULVRTempsDat::writeDB: Bad EcalLogicID")); }
63 m_writeStmt->setInt(1, iovID);
64 m_writeStmt->setInt(2, logicID);
66 m_writeStmt->setFloat(3, item->getT1() );
67 m_writeStmt->setFloat(4, item->getT2() );
68 m_writeStmt->setFloat(5, item->getT3() );
70 m_writeStmt->executeUpdate();
71 }
catch (SQLException &
e) {
72 throw(std::runtime_error(
"DCULVRTempsDat::writeDB(): "+e.getMessage()));
81 this->checkConnection();
84 iov->setConnection(m_env, m_conn);
85 int iovID = iov->fetchID();
93 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, " 95 "FROM channelview cv JOIN dcu_lvr_temps_dat d " 96 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to " 97 "WHERE d.iov_id = :iov_id");
98 m_readStmt->setInt(1, iovID);
99 ResultSet* rset = m_readStmt->executeQuery();
101 std::pair< EcalLogicID, DCULVRTempsDat >
p;
103 while(rset->next()) {
111 dat.
setT1( rset->getFloat(7) );
112 dat.
setT2( rset->getFloat(8) );
113 dat.
setT3( rset->getFloat(9) );
118 }
catch (SQLException &
e) {
119 throw(std::runtime_error(
"DCULVRTempsDat::fetchData(): "+e.getMessage()));
void fetchData(std::map< EcalLogicID, DCULVRTempsDat > *fillVec, DCUIOV *iov) noexcept(false)
void writeDB(const EcalLogicID *ecid, const DCULVRTempsDat *item, DCUIOV *iov) noexcept(false)
void prepareWrite() noexcept(false) override
~DCULVRTempsDat() override