mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-05-12 05:57:13 +02:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
83 lines
1.3 KiB
C++
83 lines
1.3 KiB
C++
//
|
|
// StatementImpl.cpp
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "StatementImpl.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
namespace Test {
|
|
|
|
|
|
StatementImpl::StatementImpl()
|
|
{
|
|
}
|
|
|
|
|
|
StatementImpl::~StatementImpl()
|
|
{
|
|
}
|
|
|
|
|
|
void StatementImpl::compileImpl()
|
|
{
|
|
// prepare binding
|
|
_ptrBinder = new Binder;
|
|
_ptrExtractor = new Extractor;
|
|
_ptrPrepare = new Preparation();
|
|
}
|
|
|
|
|
|
bool StatementImpl::canBind() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
void StatementImpl::bindImpl()
|
|
{
|
|
// bind
|
|
typedef Poco::Data::AbstractBindingVec Bindings;
|
|
Bindings& binds = bindings();
|
|
if (binds.empty())
|
|
return;
|
|
|
|
Bindings::iterator it = binds.begin();
|
|
Bindings::iterator itEnd = binds.end();
|
|
std::size_t pos = 0;
|
|
for (; it != itEnd && (*it)->canBind(); ++it)
|
|
{
|
|
(*it)->bind(pos);
|
|
pos += (*it)->numOfColumnsHandled();
|
|
}
|
|
}
|
|
|
|
|
|
bool StatementImpl::hasNext()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
void StatementImpl::next()
|
|
{
|
|
Poco::Data::AbstractExtractionVec::iterator it = extractions().begin();
|
|
Poco::Data::AbstractExtractionVec::iterator itEnd = extractions().end();
|
|
std::size_t pos = 0;
|
|
for (; it != itEnd; ++it)
|
|
{
|
|
(*it)->extract(pos);
|
|
pos += (*it)->numOfColumnsHandled();
|
|
}
|
|
}
|
|
|
|
|
|
} } } // namespace Poco::Data::Test
|