1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-12 07:47:12 +01:00
Sandu Liviu Catalin 4a6bfc086c Major plugin refactor and cleanup.
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.
2021-01-30 08:51:39 +02:00

154 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 NullData& val, Direction dir)
{
}
void Binder::reset()
{
}
} } } // namespace Poco::Data::Test