// file : odb/database.ixx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file namespace odb { inline database:: database () { } template inline void database:: erase (const T& obj) { erase (object_traits::id (obj)); } template inline result database:: query () { return query (odb::query ()); } template inline result database:: query (const std::string& q) { return query (odb::query (q)); } }