blob: de970bbef49c53939e522d1ae5d4584ce6a87d6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "sqlSource.h"
namespace IceTray {
DB::ModifyCommandPtr
SqlSource::modify(DB::Connection * db) const
{
return db->modify(getSql(), getCommandOptions());
}
DB::SelectCommandPtr
SqlSource::select(DB::Connection * db) const
{
return db->select(getSql(), getCommandOptions());
}
}
|