blob: 7d3c619a764f5a18a403c463521696e331971b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "sqlSource.h"
#include <command.h>
#include <connection.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());
}
}
|