#include <FEConfigFgrInfo.h>
Definition at line 11 of file FEConfigFgrInfo.h.
FEConfigFgrInfo::FEConfigFgrInfo |
( |
| ) |
|
FEConfigFgrInfo::~FEConfigFgrInfo |
( |
| ) |
|
void FEConfigFgrInfo::clear |
( |
void |
| ) |
|
|
private |
void FEConfigFgrInfo::fetchData |
( |
FEConfigFgrInfo * |
result | ) |
|
throw | ( | std::runtime_error |
| ) | | |
|
private |
Definition at line 128 of file FEConfigFgrInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, and query::result.
134 throw(std::runtime_error(
"FEConfigFgrInfo::fetchData(): no Id defined for this FEConfigFgrInfo "));
141 " where ( fgr_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(
"FEConfigFgrInfo::fetchData(): "+e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
void setDBTime(const Tm &x)
void setNumberOfGroups(int iov_id)
oracle::occi::ResultSet ResultSet
void setConfigTag(std::string x)
std::string getConfigTag()
void checkConnection() const
int FEConfigFgrInfo::fetchID |
( |
| ) |
|
throw | ( | std::runtime_error |
| ) | | |
Definition at line 189 of file FEConfigFgrInfo.cc.
References alignCSCRings::e.
200 stmt->setSQL(
"SELECT fgr_conf_id FROM "+
getTable()+
201 " WHERE tag=:1 and version=:2 " );
209 m_ID = rset->getInt(1);
213 m_conn->terminateStatement(stmt);
215 throw(std::runtime_error(
"FEConfigFgrInfo::fetchID: "+e.getMessage()));
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
oracle::occi::Statement Statement
oracle::occi::ResultSet ResultSet
std::string getConfigTag()
void checkConnection() const
void FEConfigFgrInfo::fetchLastData |
( |
FEConfigFgrInfo * |
result | ) |
|
throw | ( | std::runtime_error |
| ) | | |
|
private |
Definition at line 163 of file FEConfigFgrInfo.cc.
References DateHandler::dateToTm(), cuy::dh, alignCSCRings::e, and query::result.
172 " where fgr_conf_id = ( select max( fgr_conf_id) from "+
getTable() +
" ) " );
177 result->
setId(rset->getInt(1));
181 Date dbdate = rset->getDate(5);
185 throw(std::runtime_error(
"FEConfigFgrInfo::fetchData(): "+e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
void setDBTime(const Tm &x)
void setNumberOfGroups(int iov_id)
oracle::occi::ResultSet ResultSet
void setConfigTag(std::string x)
void checkConnection() const
int FEConfigFgrInfo::fetchNextId |
( |
| ) |
|
throw | ( | std::runtime_error |
| ) | | |
Definition at line 38 of file FEConfigFgrInfo.cc.
References alignCSCRings::e, and query::result.
45 m_readStmt->setSQL(
"select FE_CONFIG_FGR_SQ.NextVal from DUAL ");
47 while (rset->next ()){
48 result= rset->getInt(1);
55 throw(std::runtime_error(
"FEConfigFgrInfo::fetchNextId(): "+e.getMessage()));
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
oracle::occi::ResultSet ResultSet
void checkConnection() const
Tm FEConfigFgrInfo::getDBTime |
( |
| ) |
const |
|
inline |
int FEConfigFgrInfo::getId |
( |
| ) |
const |
|
inline |
int FEConfigFgrInfo::getID |
( |
| ) |
|
|
inline |
int FEConfigFgrInfo::getNumberOfGroups |
( |
| ) |
const |
|
inline |
std::string FEConfigFgrInfo::getTable |
( |
| ) |
|
|
inlinevirtual |
int FEConfigFgrInfo::getVersion |
( |
| ) |
const |
|
inline |
void FEConfigFgrInfo::prepareWrite |
( |
| ) |
|
throw | ( | std::runtime_error |
| ) | | |
|
privatevirtual |
Implements IODConfig.
Definition at line 60 of file FEConfigFgrInfo.cc.
References alignCSCRings::e, and getId().
72 m_writeStmt->setSQL(
"INSERT INTO "+
getTable()+
" ( fgr_conf_id, tag, version, number_of_groups) "
73 " VALUES ( :1, :2, :3 , :4) " );
79 throw(std::runtime_error(
"FEConfigFgrInfo::prepareWrite(): "+e.getMessage()));
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
void checkConnection() const
void FEConfigFgrInfo::setByID |
( |
int |
id | ) |
|
throw | ( | std::runtime_error |
| ) | | |
Definition at line 223 of file FEConfigFgrInfo.cc.
References DateHandler::dateToTm(), cuy::dh, and alignCSCRings::e.
233 stmt->setSQL(
"SELECT * FROM fe_config_fgr_info WHERE fgr_conf_id = :1");
238 this->
setId(rset->getInt(1));
242 Date dbdate = rset->getDate(5);
245 throw(std::runtime_error(
"FEConfigFgrInfo::setByID: Given config_id is not in the database"));
248 m_conn->terminateStatement(stmt);
250 throw(std::runtime_error(
"FEConfigFgrInfo::setByID: "+e.getMessage()));
oracle::occi::Environment * m_env
oracle::occi::Connection * m_conn
oracle::occi::SQLException SQLException
void setDBTime(const Tm &x)
void setNumberOfGroups(int iov_id)
oracle::occi::Statement Statement
oracle::occi::ResultSet ResultSet
void setConfigTag(std::string x)
void checkConnection() const
void FEConfigFgrInfo::setDBTime |
( |
const Tm & |
x | ) |
|
|
inline |
void FEConfigFgrInfo::setId |
( |
int |
id | ) |
|
|
inline |
void FEConfigFgrInfo::setID |
( |
int |
id | ) |
|
|
inline |
void FEConfigFgrInfo::setNumberOfGroups |
( |
int |
iov_id | ) |
|
|
inline |
void FEConfigFgrInfo::setParameters |
( |
const std::map< std::string, std::string > & |
my_keys_map | ) |
|
Definition at line 84 of file FEConfigFgrInfo.cc.
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()) );
void setNumberOfGroups(int iov_id)
void setConfigTag(std::string x)
void FEConfigFgrInfo::setVersion |
( |
int |
id | ) |
|
|
inline |
void FEConfigFgrInfo::writeDB |
( |
| ) |
|
throw | ( | std::runtime_error |
| ) | | |
|
private |
Definition at line 100 of file FEConfigFgrInfo.cc.
References alignCSCRings::e.
117 throw(std::runtime_error(
"FEConfigFgrInfo::writeDB(): "+e.getMessage()));
121 throw(std::runtime_error(
"FEConfigFgrInfo::writeDB: Failed to write"));
int getNumberOfGroups() const
oracle::occi::SQLException SQLException
std::string getConfigTag()
void checkConnection() const
Tm FEConfigFgrInfo::m_db_time |
|
private |
int FEConfigFgrInfo::m_ID |
|
private |
int FEConfigFgrInfo::m_iov_id |
|
private |
int FEConfigFgrInfo::m_version |
|
private |