1//
2// Binder.cpp
3//
4// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
5// and Contributors.
6//
7// SPDX-License-Identifier: BSL-1.0
8//
9
10
11#include "Binder.h"
12#include "Poco/SQL/LOB.h"
13#include "Poco/Exception.h"
14
15
16namespace Poco {
17namespace SQL {
18namespace Test {
19
20
21Binder::Binder()
22{
23}
24
25
26Binder::~Binder()
27{
28}
29
30
31void Binder::bind(std::size_t pos, const Poco::Int8 &val, Direction dir, const WhenNullCb& nullCb)
32{
33}
34
35
36void Binder::bind(std::size_t pos, const Poco::UInt8 &val, Direction dir, const WhenNullCb& nullCb)
37{
38}
39
40
41void Binder::bind(std::size_t pos, const Poco::Int16 &val, Direction dir, const WhenNullCb& nullCb)
42{
43}
44
45
46void Binder::bind(std::size_t pos, const Poco::UInt16 &val, Direction dir, const WhenNullCb& nullCb)
47{
48}
49
50
51void Binder::bind(std::size_t pos, const Poco::Int32 &val, Direction dir, const WhenNullCb& nullCb)
52{
53}
54
55
56void Binder::bind(std::size_t pos, const Poco::UInt32 &val, Direction dir, const WhenNullCb& nullCb)
57{
58}
59
60
61void Binder::bind(std::size_t pos, const Poco::Int64 &val, Direction dir, const WhenNullCb& nullCb)
62{
63}
64
65
66void Binder::bind(std::size_t pos, const Poco::UInt64 &val, Direction dir, const WhenNullCb& nullCb)
67{
68}
69
70
71#ifndef POCO_LONG_IS_64_BIT
72void Binder::bind(std::size_t pos, const long& val, Direction dir, const WhenNullCb& nullCb)
73{
74}
75
76
77void Binder::bind(std::size_t pos, const unsigned long& val, Direction dir, const WhenNullCb& nullCb)
78{
79}
80#endif
81
82
83void Binder::bind(std::size_t pos, const bool &val, Direction dir, const WhenNullCb& nullCb)
84{
85}
86
87
88void Binder::bind(std::size_t pos, const float &val, Direction dir, const WhenNullCb& nullCb)
89{
90}
91
92
93void Binder::bind(std::size_t pos, const double &val, Direction dir, const WhenNullCb& nullCb)
94{
95}
96
97
98void Binder::bind(std::size_t pos, const char &val, Direction dir, const WhenNullCb& nullCb)
99{
100}
101
102
103void Binder::bind(std::size_t pos, const char* const &pVal, Direction dir, const WhenNullCb& nullCb)
104{
105}
106
107
108void Binder::bind(std::size_t pos, const std::string& val, Direction dir, const WhenNullCb& nullCb)
109{
110}
111
112
113void Binder::bind(std::size_t pos, const Poco::UTF16String& val, Direction dir, const WhenNullCb& nullCb)
114{
115}
116
117
118void Binder::bind(std::size_t pos, const BLOB& val, Direction dir, const WhenNullCb& nullCb)
119{
120}
121
122
123void Binder::bind(std::size_t pos, const CLOB& val, Direction dir, const WhenNullCb& nullCb)
124{
125}
126
127
128void Binder::bind(std::size_t pos, const Date& val, Direction dir, const WhenNullCb& nullCb)
129{
130}
131
132
133void Binder::bind(std::size_t pos, const Time& val, Direction dir, const WhenNullCb& nullCb)
134{
135}
136
137
138void Binder::bind(std::size_t pos, const DateTime& val, Direction dir, const WhenNullCb& nullCb)
139{
140}
141
142
143void Binder::bind(std::size_t pos, const NullData& val, Direction dir, const std::type_info& bindType)
144{
145}
146
147
148void Binder::reset()
149{
150}
151
152
153} } } // namespace Poco::SQL::Test
154