32#ifndef GUARD_SQLITE_QUERY_HPP_INCLUDED
33#define GUARD_SQLITE_QUERY_HPP_INCLUDED
35#include <boost/shared_ptr.hpp>
boost::shared_ptr< result > result_type
command is the base class of all sql command classes An object of this class is not copyable
connection is used to open, close, attach and detach a database. Further it has to be passed to all c...
query should be used to execute SQL queries An object of this class is not copyable
result_type get_result()
returns the results (needs a previous emit() call)
result_type emit_result()
executes the sql command
query(connection &con, std::string const &sql)
constructor
virtual ~query()
destructor
result can only be created by a query object. An object of this class is not copyable.