|
crawlserv++
[under development]
Application for crawling and analyzing textual content of websites.
|
#include "../Helper/DateTime.hpp"#include "../Helper/FileSystem.hpp"#include "../Helper/Memory.hpp"#include "../Helper/Utf8.hpp"#include "../Main/Database.hpp"#include "../Main/Exception.hpp"#include "../Struct/DatabaseSettings.hpp"#include "../Struct/ModuleOptions.hpp"#include <cstddef>#include <cstdint>#include <fstream>#include <limits>#include <memory>#include <queue>#include <string>#include <string_view>

Go to the source code of this file.
Classes | |
| class | crawlservpp::Module::Database |
| Class handling database access for threads. More... | |
| class | crawlservpp::Module::Database::Exception |
| Class for Module::Database exceptions. More... | |
Namespaces | |
| crawlservpp::Wrapper | |
| Namespace for RAII wrappers and Wrapper::Database. | |
| crawlservpp::Module | |
| Namespace for the different modules run by threads. | |
Constants | |
| constexpr auto | crawlservpp::Module::sqlArg1 {1} |
| First argument in a SQL query. More... | |
| constexpr auto | crawlservpp::Module::sqlArg2 {2} |
| Second argument in a SQL query. More... | |
| constexpr auto | crawlservpp::Module::sqlArg3 {3} |
| Third argument in a SQL query. More... | |