blob: ad71b4f4767f5fde601052eb55cdc2e42896465e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : odb/database.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#include <odb/database.hxx>
namespace odb
{
database::
~database ()
{
}
unsigned long long database::
execute (const char* st, std::size_t n)
{
connection_type& c (transaction::current ().connection ());
return c.execute (st, n);
}
}
|