mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-07 06:54:57 +02:00

* make bool Session::isTransaction() return Poco::Optional * move parsing to Statement * SQLParser make build * other fixes and improvemets #4230
43 lines
714 B
C++
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
|