#include <FEConfigPedInfo.h>
Definition at line 11 of file FEConfigPedInfo.h.
FEConfigPedInfo::FEConfigPedInfo |
( |
| ) |
|
FEConfigPedInfo::~FEConfigPedInfo |
( |
| ) |
|
|
override |
void FEConfigPedInfo::clear |
( |
void |
| ) |
|
|
private |
Definition at line 128 of file FEConfigPedInfo.cc.
References DateHandler::dateToTm(), cuy::dh, MillePedeFileConverter_cfg::e, mps_fire::result, and AlCaHLTBitMon_QueryRunRegistry::string.
134 throw(std::runtime_error(
"FEConfigPedInfo::fetchData(): no Id defined for this FEConfigPedInfo "));
141 " where ( ped_conf_id= :1 or (tag=:2 AND version=:3 ) )" );
151 result->
setId(rset->getInt(1));
155 Date dbdate = rset->getDate(5);
159 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::fetchData(): ")+getOraMessage(&e)));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void setDBTime(const Tm &x)
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
std::string getConfigTag()
std::string getTable() override
int FEConfigPedInfo::fetchID |
( |
| ) |
|
|
noexcept |
Definition at line 189 of file FEConfigPedInfo.cc.
References MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by setDBTime().
200 stmt->setSQL(
"SELECT ped_conf_id FROM "+
getTable()+
201 " WHERE tag=:1 and version=:2 " );
206 ResultSet* rset = stmt->executeQuery();
209 m_ID = rset->getInt(1);
213 m_conn->terminateStatement(stmt);
215 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::fetchID: ")+getOraMessage(&e)));
oracle::occi::Connection * m_conn
void checkConnection() const noexcept(false)
oracle::occi::Statement Statement
oracle::occi::SQLException SQLException
std::string getConfigTag()
std::string getTable() override
int FEConfigPedInfo::fetchNextId |
( |
| ) |
|
|
noexcept |
Tm FEConfigPedInfo::getDBTime |
( |
| ) |
const |
|
inline |
int FEConfigPedInfo::getId |
( |
void |
| ) |
const |
|
inline |
int FEConfigPedInfo::getID |
( |
| ) |
|
|
inline |
int FEConfigPedInfo::getIOVId |
( |
| ) |
const |
|
inline |
std::string FEConfigPedInfo::getTable |
( |
| ) |
|
|
inlineoverridevirtual |
int FEConfigPedInfo::getVersion |
( |
| ) |
const |
|
inline |
void FEConfigPedInfo::prepareWrite |
( |
| ) |
|
|
overrideprivatevirtualnoexcept |
void FEConfigPedInfo::setByID |
( |
int |
id | ) |
|
|
noexcept |
Definition at line 223 of file FEConfigPedInfo.cc.
References DateHandler::dateToTm(), cuy::dh, MillePedeFileConverter_cfg::e, and AlCaHLTBitMon_QueryRunRegistry::string.
Referenced by setDBTime().
233 stmt->setSQL(
"SELECT * FROM fe_config_ped_info WHERE ped_conf_id = :1");
236 ResultSet* rset = stmt->executeQuery();
238 this->
setId(rset->getInt(1));
242 Date dbdate = rset->getDate(5);
245 throw(std::runtime_error(
"FEConfigPedInfo::setByID: Given config_id is not in the database"));
248 m_conn->terminateStatement(stmt);
250 throw(std::runtime_error(
std::string(
"FEConfigPedInfo::setByID: ")+getOraMessage(&e)));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
void setDBTime(const Tm &x)
void checkConnection() const noexcept(false)
void setIOVId(int iov_id)
oracle::occi::Statement Statement
void setConfigTag(std::string x)
oracle::occi::SQLException SQLException
void FEConfigPedInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
void FEConfigPedInfo::setId |
( |
int |
id | ) |
|
|
inline |
void FEConfigPedInfo::setID |
( |
int |
id | ) |
|
|
inline |
void FEConfigPedInfo::setIOVId |
( |
int |
iov_id | ) |
|
|
inline |
void FEConfigPedInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 84 of file FEConfigPedInfo.cc.
Referenced by setDBTime().
89 for( std::map<std::string, std::string >::const_iterator ci=
90 my_keys_map.begin(); ci!=my_keys_map.end(); ci++ ) {
92 if(ci->first==
"VERSION")
setVersion(atoi(ci->second.c_str()) );
94 if(ci->first==
"IOV_ID")
setIOVId(atoi(ci->second.c_str()) );
void setIOVId(int iov_id)
void setConfigTag(std::string x)
void FEConfigPedInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
void FEConfigPedInfo::writeDB |
( |
| ) |
|
|
privatenoexcept |
Tm FEConfigPedInfo::m_db_time |
|
private |
int FEConfigPedInfo::m_ID |
|
private |
int FEConfigPedInfo::m_iov_id |
|
private |
int FEConfigPedInfo::m_version |
|
private |