| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <Common/config.h> |
| 4 | #include <Interpreters/Context.h> |
| 5 | #include <Poco/Logger.h> |
| 6 | #include <Poco/Net/HTTPRequestHandler.h> |
| 7 | |
| 8 | #if USE_POCO_SQLODBC || USE_POCO_DATAODBC |
| 9 | |
| 10 | #if USE_POCO_SQLODBC |
| 11 | #include <Poco/SQL/ODBC/Utility.h> |
| 12 | #endif |
| 13 | #if USE_POCO_DATAODBC |
| 14 | #include <Poco/Data/ODBC/Utility.h> |
| 15 | #endif |
| 16 | |
| 17 | namespace DB |
| 18 | { |
| 19 | |
| 20 | std::string getIdentifierQuote(SQLHDBC hdbc); |
| 21 | } |
| 22 | #endif |
| 23 |