poco/Data/include/Poco/Data/SQLParser.h
Alex Fabijanic 6dad8502d3 fix(Data):
* make bool Session::isTransaction() return Poco::Optional
* move parsing to Statement
* SQLParser make build
* other fixes and improvemets #4230
2023-11-01 00:25:46 +01:00

43 lines
714 B
C++

//
// SQLParser.h
//
// Library: Data
// Package: SQLParser
// Module: SQLParser
//
// Forward header for the SQLParser class.
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef Data_SQLParser_INCLUDED
#define Data_SQLParser_INCLUDED
#include "Poco/Config.h"
#ifndef POCO_DATA_NO_SQL_PARSER
#include "sql-parser/src/SQLParser.h"
#include "sql-parser/src/SQLParserResult.h"
#include "sql-parser/src/util/sqlhelper.h"
namespace Poco {
namespace Data {
namespace Parser = hsql; // namespace Poco::Data::Parser
} } // namespace Poco::Data
#endif // POCO_DATA_NO_SQL_PARSER
#endif // Data_SQLParser_INCLUDED