/
GitP
/
extDB3
Обзор
Документация
Войти
/
GitP
/
extDB3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/protocols/sql.h
22 строки
507 B
RedAge Admin
extDB3: пересобранная версия для Linux + Windows
09 авг 2026, 14:00
09 авг 2026, 14:00
6c87f07
Код
Авторство
О чём код?
/* * extDB3 * © 2016 Declan Ireland <https://bitbucket.org/torndeco/extdb3> */ #pragma once #include "abstract_protocol.h" class SQL: public AbstractProtocol { public: bool init(AbstractExt *extension, const std::string &database_id, const std::string &options_str); bool callProtocol(std::string input_str, std::string &result, const bool async_method, const unsigned int unique_id=1); private: MariaDBPool *database_pool; int check_dataType_string = 0; bool check_dataType_null = false; };