6 #include <TSQLServer.h>
7 #include <TSQLStatement.h>
18 m_list.push_back(item);
23 for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
24 if (it->map_id == map_id)
return true;
31 for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
32 if (it->run_b <= run && run <= it->run_e)
return it->map_id;
35 cerr <<
"\n!!ERROR!! ParamRunRange::Find(): Cannot find a range for run=" << run <<
". Abort." << endl;
43 cout <<
" ParamRunRange::ReadFromFile(): " << fn_tsv <<
"...\n";
46 cerr <<
"\n!!ERROR!! Cannot open the map file '" << fn_tsv <<
"'." << endl;
53 while ( getline(ifs, buffer) ) {
54 if (buffer[0] ==
'#')
continue;
60 if (! (iss >> run_b >> run_e >> map_id))
continue;
61 cout <<
" " << run_b <<
" " << run_e <<
" " << map_id << endl;
62 Add(run_b, run_e, map_id);
73 TSQLStatement* stmt = db.
Process(
"select run_b, run_e, map_id from run_range");
74 while (stmt->NextResultRow()) {
75 int run_b = stmt->GetInt (0);
76 int run_e = stmt->GetInt (1);
77 string map_id = stmt->GetString(2);
78 Add(run_b, run_e, map_id);
85 cout <<
"ParamRunRange::WriteToDB()\n";
86 cout <<
" Schema = " << schema <<
"\n";
92 const char* list_var [] = {
"run_b",
"run_e",
"map_id" };
93 const char* list_type[] = {
"INT",
"INT",
"VARCHAR(64)" };
94 db.
CreateTable(
"run_range", 3, list_var, list_type);
97 oss <<
"insert into run_range (run_b, run_e, map_id) values";
98 for (RangeList::iterator it = m_list.begin(); it != m_list.end(); it++) {
99 oss <<
" (" << it->run_b <<
", " << it->run_e <<
", '" << it->map_id <<
"'),";
101 string query = oss.str();
102 query.erase(query.length()-1, 1);
103 if (! db.
Con()->Exec(query.c_str())) {
104 cerr <<
" ERROR in insert. Abort." << endl;
108 cout <<
" ...done." << endl;
Standard interface with SQL database.
TSQLStatement * Process(const char *query)
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 ReadFromDB(const std::string schema)
void WriteToDB(const std::string schema)
void Add(const int run_b, const int run_e, const std::string map_id)
bool Find(const std::string map_id)
void ReadFromFile(const std::string fn_tsv)