32 #ifndef GUARD_SQLITE_QUERY_HPP_INCLUDED 33 #define GUARD_SQLITE_QUERY_HPP_INCLUDED 35 #include <boost/shared_ptr.hpp> 73 #endif //GUARD_SQLITE_QUERY_HPP_INCLUDED connection is used to open, close, attach and detach a database. Further it has to be passed to all c...
result_type get_result()
returns the results (needs a previous emit() call)
result_type emit_result()
executes the sql command
command is the base class of all sql command classes An object of this class is not copyable ...
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.
query should be used to execute SQL queries An object of this class is not copyable ...
boost::shared_ptr< result > result_type