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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
// file : odb/sqlite/tracer.cxx
// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#include <odb/sqlite/tracer.hxx>
#include <odb/sqlite/connection.hxx>
#include <odb/sqlite/statement.hxx>
namespace odb
{
namespace sqlite
{
tracer::
~tracer ()
{
}
void tracer::
prepare (connection&, const statement&)
{
}
void tracer::
execute (connection& c, const statement& s)
{
execute (c, s.text ());
}
void tracer::
deallocate (connection&, const statement&)
{
}
void tracer::
prepare (odb::connection& c, const odb::statement& s)
{
prepare (static_cast<connection&> (c),
static_cast<const statement&> (s));
}
void tracer::
execute (odb::connection& c, const odb::statement& s)
{
execute (static_cast<connection&> (c),
static_cast<const statement&> (s));
}
void tracer::
execute (odb::connection& c, const char* s)
{
execute (static_cast<connection&> (c), s);
}
void tracer::
deallocate (odb::connection& c, const odb::statement& s)
{
deallocate (static_cast<connection&> (c),
static_cast<const statement&> (s));
}
}
}
|