blob: 57554e3044a9440075f610c0b19927015623f69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef GENTOOBROWSE_API_SERVICE_DBUTILS_H
#define GENTOOBROWSE_API_SERVICE_DBUTILS_H
#include <command.h>
#include <modifycommand.h>
#include <connection.h>
namespace Gentoo {
namespace Utils {
namespace Database {
bool bindOptionalsS(DB::Command * db, unsigned int c, const std::vector<boost::optional<Glib::ustring> > & vs);
std::string emptyClone(DB::Connection *, const std::string &);
void drop(DB::Connection *, const std::string &);
DB::ModifyCommandPtr tablePatchInserter(DB::Connection *, const DB::TablePatch &);
}
}
}
#endif
|