2 #include <TSQLServer.h>
9 m_name_table (
"deco_status")
22 if (m_db)
delete m_db;
29 if (! m_db->
HasTable(m_name_table)) {
31 list.
Add(
"run_id" ,
"INT",
true);
32 list.
Add(
"deco_status" ,
"INT");
33 list.
Add(
"deco_utime_b",
"INT");
34 list.
Add(
"deco_utime_e",
"INT");
35 list.
Add(
"deco_utime_u",
"INT");
36 list.
Add(
"deco_result" ,
"INT");
51 if (utime == 0) utime = time(0);
55 oss <<
"delete from " << m_name_table <<
" where run_id = " << run;
56 if (! m_db->
Con()->Exec(oss.str().c_str())) {
57 cerr <<
"!!ERROR!! DecoStatusDb::RunStarted()." << endl;
61 oss <<
"insert into " << m_name_table <<
" values" <<
" (" << run <<
", " << STARTED <<
", " << utime <<
", 0, 0, 0)";
62 if (! m_db->
Con()->Exec(oss.str().c_str())) {
63 cerr <<
"!!ERROR!! DecoStatusDb::RunStarted()." << endl;
70 if (utime == 0) utime = time(0);
73 oss <<
"update " << m_name_table <<
" set deco_status = " << UPDATED <<
", deco_utime_u = " << utime <<
" where run_id = " << run;
74 if (! m_db->
Con()->Exec(oss.str().c_str())) {
75 cerr <<
"!!ERROR!! DecoStatusDb::RunUpdated()." << endl;
82 if (utime == 0) utime = time(0);
85 oss <<
"update " << m_name_table <<
" set deco_status = " << FINISHED <<
", deco_utime_e = " << utime <<
", deco_utime_u = " << utime <<
", deco_result = " << result <<
" where run_id = " << run;
86 if (! m_db->
Con()->Exec(oss.str().c_str())) {
87 cerr <<
"!!ERROR!! DecoStatusDb::RunFinished()." << endl;
void Add(const std::string name, const std::string type, const bool is_key=false)
Standard interface with SQL database.
void DropTable(const char *name)
void UseSchema(const char *name, const bool do_create=false, const bool do_drop=false)
void CreateTable(const std::string name, const std::vector< std::string > list_var, const std::vector< std::string > list_type, const std::vector< std::string > list_key)
bool HasTable(const char *name, const bool exit_on_false=false)
void RunFinished(const int run, const int result, int utime=0)
void InitTable(const bool refresh=false)
void RunUpdated(const int run, int utime=0)
void RunStarted(const int run, int utime=0)
static std::string GetSchemaMainDaq()