-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtagtable.cpp
More file actions
43 lines (32 loc) · 896 Bytes
/
Copy pathtagtable.cpp
File metadata and controls
43 lines (32 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "tagtable.hpp"
#include <vector>
#include "search.hpp"
#include "tag.hpp"
Data* TagTable::createData(cppdb::result& res) const
{
return Tag::create(
res.get<int>("id"),
res.get<std::string>("name")
);
}
std::set<Data*> TagTable::fetchAll()
{
std::vector<std::string> fields{"id", "name"};
return Table::fetchAll(fields);
}
Data* TagTable::fetch(int id)
{
std::vector<std::string> fields{"id", "name"};
return Table::fetch(id, fields);
}
std::string TagTable::searchQuery(const std::set<std::string>& query,
const std::string& op)
{
std::vector<std::string> fields{"name"};
return Table::searchQuery(query, op, fields);
}
std::set<Data*> TagTable::search(SearchQuery const& query)
{
std::vector<std::string> fields{"id", "name"};
return Table::search(query, fields);
}