2018-09-28 02:46:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Common/config.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Poco/Logger.h>
|
|
|
|
#include <Poco/Net/HTTPRequestHandler.h>
|
|
|
|
|
|
|
|
#if USE_POCO_SQLODBC || USE_POCO_DATAODBC
|
2018-10-09 15:03:41 +00:00
|
|
|
|
|
|
|
#if USE_POCO_SQLODBC
|
2019-06-05 11:52:39 +00:00
|
|
|
#include <Poco/SQL/ODBC/Utility.h>
|
2018-10-09 15:03:41 +00:00
|
|
|
#endif
|
|
|
|
#if USE_POCO_DATAODBC
|
|
|
|
#include <Poco/Data/ODBC/Utility.h>
|
|
|
|
#endif
|
|
|
|
|
2018-09-28 02:46:33 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-10-09 15:03:41 +00:00
|
|
|
std::string getIdentifierQuote(SQLHDBC hdbc);
|
2018-09-28 02:46:33 +00:00
|
|
|
}
|
2019-01-04 13:32:08 +00:00
|
|
|
#endif
|