// file : odb/tracer/connection.cxx // author : Boris Kolpackov // license : GNU GPL v2; see accompanying LICENSE file #include #include #include namespace odb { namespace tracer { connection:: connection (database_type& db) : odb::connection (db) { } unsigned long long connection:: execute (const char*, std::size_t) { return 0; } transaction_impl* connection:: begin () { return new transaction_impl (connection_ptr (inc_ref (this))); } } }