Go to the documentation of this file.
32 #ifndef GUARD_SQLITE_QUERY_HPP_INCLUDED
33 #define GUARD_SQLITE_QUERY_HPP_INCLUDED
35 #include <boost/shared_ptr.hpp>
72 #endif //GUARD_SQLITE_QUERY_HPP_INCLUDED
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
boost::shared_ptr< result > result_type
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 can only be created by a query object. An object of this class is not copyable.