6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
22 for (LineList::iterator it = lines.begin(); it != lines.end(); it++) {
26 short roc, board, chan;
27 if (! (iss >> name >> roc >> board >> chan))
continue;
28 Add(roc, board, chan, name);
37 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
39 << it->roc <<
"\t" << it->board <<
"\t" << it->chan <<
"\n";
48 oss <<
"select roc, board, chan, name from " <<
MapTableName();
49 TSQLStatement* stmt = db.
Process(oss.str());
50 while (stmt->NextResultRow()) {
51 short roc = stmt->GetInt (0);
52 short board = stmt->GetInt (1);
53 short chan = stmt->GetInt (2);
54 string name = stmt->GetString(3);
55 Add(roc, board, chan, name);
64 const char* list_var [] = {
"roc",
"board",
"chan",
"name" };
65 const char* list_type[] = {
"SMALLINT",
"SMALLINT",
"SMALLINT",
"VARCHAR(64)" };
67 db.
CreateTable(name_table, n_var, list_var, list_type);
70 oss <<
"insert into " << name_table <<
"(roc, board, chan, name) values";
71 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
72 oss <<
" (" << it->roc <<
", " << it->board <<
", " << it->chan
73 <<
", '" << it->name <<
"'),";
75 string query = oss.str();
76 query.erase(query.length()-1, 1);
77 if (! db.
Con()->Exec(query.c_str())) {
78 cerr <<
"!!ERROR!! ChanMapScaler::WriteToDB(): in insert. Abort." << endl;
83 void ChanMapScaler::Add(
const short roc,
const short board,
const short chan,
const std::string name)
90 m_list.push_back(item);
97 if (m_map.find(key) != m_map.end()) {
108 for (List_t::iterator it = m_list.begin(); it != m_list.end(); it++) {
109 os << it->name <<
"\t"
110 << it->roc <<
"\t" << it->board <<
"\t" << it->chan <<
"\n";
113 cout << n_ent << endl;
std::tuple< short, short, short > RocBoardChan_t
void ReadDbTable(DbSvc &db)
void WriteDbTable(DbSvc &db)
void Print(std::ostream &os)
bool Find(const short roc, const short board, const short chan, std::string &name)
void Add(const short roc, const short board, const short chan, const std::string name)
int ReadFileCont(LineList &lines)
int WriteFileCont(std::ostream &os)
Standard interface with SQL database.
TSQLStatement * Process(const char *query)
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)
std::vector< std::string > LineList
std::string MapTableName()