mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 08:52:06 +00:00
48 lines
728 B
C++
48 lines
728 B
C++
//
|
|
// AbstractBinding.cpp
|
|
//
|
|
// $Id: //poco/Main/Data/src/AbstractBinding.cpp#5 $
|
|
//
|
|
// Library: Data
|
|
// Package: DataCore
|
|
// Module: AbstractBinding
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Data/AbstractBinding.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
AbstractBinding::AbstractBinding(const std::string& name,
|
|
Direction direction,
|
|
Poco::UInt32 bulkSize):
|
|
_pBinder(0),
|
|
_name(name),
|
|
_direction(direction),
|
|
_bulkSize(bulkSize)
|
|
{
|
|
}
|
|
|
|
|
|
AbstractBinding::~AbstractBinding()
|
|
{
|
|
}
|
|
|
|
|
|
void AbstractBinding::setBinder(BinderPtr pBinder)
|
|
{
|
|
poco_check_ptr (pBinder);
|
|
_pBinder = pBinder;
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Data
|