// file : odb/sqlite/connection.ixx // copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file namespace odb { namespace sqlite { template inline prepared_query connection:: prepare_query (const char* n, const char* q) { return prepare_query (n, query (q)); } template inline prepared_query connection:: prepare_query (const char* n, const std::string& q) { return prepare_query (n, query (q)); } template inline prepared_query connection:: prepare_query (const char* n, const query& q) { return query_::call (*this, n, q); } } }