15 m_writeStmt =
nullptr;
24 this->checkConnection();
27 m_writeStmt = m_conn->createStatement();
29 "INSERT INTO dcu_capsule_temp_dat (iov_id, logic_id, "
31 "VALUES (:iov_id, :logic_id, "
33 }
catch (SQLException&
e) {
34 throw(std::runtime_error(
"DCUCapsuleTempDat::prepareWrite(): " +
e.getMessage()));
39 this->checkConnection();
42 int iovID = iov->fetchID();
44 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB: IOV not in DB"));
47 int logicID = ecid->getLogicID();
49 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB: Bad EcalLogicID"));
53 m_writeStmt->setInt(1, iovID);
54 m_writeStmt->setInt(2, logicID);
56 m_writeStmt->setFloat(3,
item->getCapsuleTemp());
58 m_writeStmt->executeUpdate();
59 }
catch (SQLException&
e) {
60 throw(std::runtime_error(
"DCUCapsuleTempDat::writeDB(): " +
e.getMessage()));
65 this->checkConnection();
68 iov->setConnection(m_env, m_conn);
69 int iovID = iov->fetchID();
77 "SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
79 "FROM channelview cv JOIN dcu_capsule_temp_dat d "
80 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
81 "WHERE d.iov_id = :iov_id");
82 m_readStmt->setInt(1, iovID);
83 ResultSet* rset = m_readStmt->executeQuery();
85 std::pair<EcalLogicID, DCUCapsuleTempDat>
p;
87 while (rset->next()) {
100 }
catch (SQLException&
e) {
101 throw(std::runtime_error(
"DCUCapsuleTempDat::fetchData(): " +
e.getMessage()));
105 DCUIOV* iov) noexcept(
false) {
106 this->checkConnection();
107 this->checkPrepare();
109 int iovID = iov->fetchID();
111 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB: IOV not in DB"));
114 int nrows =
data->size();
115 int* ids =
new int[nrows];
116 int* iovid_vec =
new int[nrows];
117 float*
xx =
new float[nrows];
119 ub2* ids_len =
new ub2[nrows];
120 ub2* iov_len =
new ub2[nrows];
121 ub2* x_len =
new ub2[nrows];
126 typedef map<EcalLogicID, DCUCapsuleTempDat>::const_iterator CI;
127 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
128 channel = &(
p->first);
131 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB: Bad EcalLogicID"));
133 ids[
count] = logicID;
134 iovid_vec[
count] = iovID;
136 dataitem = &(
p->second);
151 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]), iov_len);
152 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len);
153 m_writeStmt->setDataBuffer(3, (dvoid*)
xx, OCCIFLOAT,
sizeof(
xx[0]), x_len);
155 m_writeStmt->executeArrayUpdate(nrows);
165 }
catch (SQLException&
e) {
166 throw(std::runtime_error(
"DCUCapsuleTempDat::writeArrayDB(): " +
e.getMessage()));