10 using namespace oracle::occi;
31 throw(std::runtime_error)
33 this->checkConnection();
36 m_writeStmt = m_conn->createStatement();
37 m_writeStmt->setSQL(
"INSERT INTO dcu_vfe_temp_dat (iov_id, logic_id, "
39 "VALUES (:iov_id, :logic_id, "
42 throw(std::runtime_error(
"DCUVFETempDat::prepareWrite(): "+e.getMessage()));
49 throw(std::runtime_error)
51 this->checkConnection();
54 int iovID =
iov->fetchID();
55 if (!iovID) {
throw(std::runtime_error(
"DCUVFETempDat::writeDB: IOV not in DB")); }
57 int logicID = ecid->getLogicID();
58 if (!logicID) {
throw(std::runtime_error(
"DCUVFETempDat::writeDB: Bad EcalLogicID")); }
61 m_writeStmt->setInt(1, iovID);
62 m_writeStmt->setInt(2, logicID);
64 m_writeStmt->setFloat(3, item->getVFETemp() );
66 m_writeStmt->executeUpdate();
68 throw(std::runtime_error(
"DCUVFETempDat::writeDB(): "+e.getMessage()));
75 throw(std::runtime_error)
77 this->checkConnection();
80 iov->setConnection(m_env, m_conn);
81 int iovID =
iov->fetchID();
89 m_readStmt->setSQL(
"SELECT cv.name, cv.logic_id, cv.id1, cv.id2, cv.id3, cv.maps_to, "
91 "FROM channelview cv JOIN dcu_vfe_temp_dat d "
92 "ON cv.logic_id = d.logic_id AND cv.name = cv.maps_to "
93 "WHERE d.iov_id = :iov_id");
94 m_readStmt->setInt(1, iovID);
95 ResultSet* rset = m_readStmt->executeQuery();
97 std::pair< EcalLogicID, DCUVFETempDat >
p;
113 throw(std::runtime_error(
"DCUVFETempDat::fetchData(): "+e.getMessage()));
118 throw(std::runtime_error)
120 this->checkConnection();
121 this->checkPrepare();
123 int iovID =
iov->fetchID();
124 if (!iovID) {
throw(std::runtime_error(
"DCUVFETempDat::writeArrayDB: IOV not in DB")); }
127 int nrows=
data->size();
128 int* ids=
new int[nrows];
129 int* iovid_vec=
new int[nrows];
130 float* xx=
new float[nrows];
132 ub2* ids_len=
new ub2[nrows];
133 ub2* iov_len=
new ub2[nrows];
134 ub2* x_len=
new ub2[nrows];
139 typedef map< EcalLogicID, DCUVFETempDat >::const_iterator CI;
140 for (CI
p =
data->begin();
p !=
data->end(); ++
p) {
141 channel = &(
p->first);
143 if (!logicID) {
throw(std::runtime_error(
"DCUVFETempDat::writeArrayDB: Bad EcalLogicID")); }
145 iovid_vec[
count]=iovID;
147 dataitem = &(
p->second);
165 m_writeStmt->setDataBuffer(1, (dvoid*)iovid_vec, OCCIINT,
sizeof(iovid_vec[0]),iov_len);
166 m_writeStmt->setDataBuffer(2, (dvoid*)ids, OCCIINT,
sizeof(ids[0]), ids_len );
167 m_writeStmt->setDataBuffer(3, (dvoid*)xx, OCCIFLOAT ,
sizeof(xx[0]), x_len );
170 m_writeStmt->executeArrayUpdate(nrows);
182 throw(std::runtime_error(
"DCUVFETempDat::writeArrayDB(): "+e.getMessage()));
oracle::occi::SQLException SQLException
void fetchData(std::map< EcalLogicID, DCUVFETempDat > *fillVec, DCUIOV *iov)
void writeArrayDB(const std::map< EcalLogicID, DCUVFETempDat > *data, DCUIOV *iov)
void writeDB(const EcalLogicID *ecid, const DCUVFETempDat *item, DCUIOV *iov)
oracle::occi::ResultSet ResultSet
char data[epos_bytes_allocation]
void setVFETemp(float temp)