1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-07 21:37:14 +01:00
2021-08-22 18:07:06 +03:00

159 lines
2.2 KiB
C++

//
// Binder.cpp
//
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Binder.h"
#include "Poco/Data/LOB.h"
#include "Poco/Exception.h"
namespace Poco {
namespace Data {
namespace Test {
Binder::Binder()
{
}
Binder::~Binder()
{
}
void Binder::bind(std::size_t pos, const Poco::Int8 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::UInt8 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::Int16 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::UInt16 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::Int32 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::UInt32 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::Int64 &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::UInt64 &val, Direction dir)
{
}
#ifndef POCO_INT64_IS_LONG
void Binder::bind(std::size_t pos, const long& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const unsigned long& val, Direction dir)
{
}
#endif
void Binder::bind(std::size_t pos, const bool &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const float &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const double &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const char &val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const char* const &pVal, Direction dir)
{
}
void Binder::bind(std::size_t pos, const std::string& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Poco::UTF16String& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const BLOB& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const CLOB& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Date& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const Time& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const DateTime& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const UUID& val, Direction dir)
{
}
void Binder::bind(std::size_t pos, const NullData& val, Direction dir)
{
}
void Binder::reset()
{
}
} } } // namespace Poco::Data::Test