#include <iostream>
#include <string>
#include <vector>
#include "DatabaseBackend.hpp"
#include "RowDTOAdapter.hpp"
 
Go to the source code of this file.
 | 
| template<typename... Types>  | 
| bool  | database::execQuery (const std::string &query, Types &&... args) noexcept | 
|   | executes a query on the database  
  | 
| template<typename... Types>  | 
| RowDTOAdapter  | database::execSelect (const std::string &query, Types &&... args) noexcept | 
|   | executes a Select on the database  
  | 
| template<typename... Types>  | 
| std::vector< RowDTOAdapter >  | database::execSelectAll (const std::string &query, Types &&... args) noexcept | 
|   | executes a Select on the database  
  |