1//
2// Preparator.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 "Preparator.h"
12#include "Poco/SQL/LOB.h"
13#include "Poco/Exception.h"
14
15
16namespace Poco {
17namespace SQL {
18namespace Test {
19
20
21Preparator::Preparator()
22{
23}
24
25
26Preparator::~Preparator()
27{
28}
29
30
31void Preparator::prepare(std::size_t pos, const Poco::Int8&)
32{
33}
34
35
36void Preparator::prepare(std::size_t pos, const Poco::UInt8&)
37{
38}
39
40
41void Preparator::prepare(std::size_t pos, const Poco::Int16&)
42{
43}
44
45
46void Preparator::prepare(std::size_t pos, const Poco::UInt16&)
47{
48}
49
50
51void Preparator::prepare(std::size_t pos, const Poco::Int32&)
52{
53}
54
55
56void Preparator::prepare(std::size_t pos, const Poco::UInt32&)
57{
58}
59
60
61void Preparator::prepare(std::size_t pos, const Poco::Int64&)
62{
63}
64
65
66void Preparator::prepare(std::size_t pos, const Poco::UInt64&)
67{
68}
69
70
71#ifndef POCO_LONG_IS_64_BIT
72void Preparator::prepare(std::size_t pos, const long&)
73{
74}
75
76
77void Preparator::prepare(std::size_t pos, const unsigned long&)
78{
79}
80#endif
81
82
83void Preparator::prepare(std::size_t pos, const bool&)
84{
85}
86
87
88void Preparator::prepare(std::size_t pos, const float&)
89{
90}
91
92
93void Preparator::prepare(std::size_t pos, const double&)
94{
95}
96
97
98void Preparator::prepare(std::size_t pos, const char&)
99{
100}
101
102
103void Preparator::prepare(std::size_t pos, const std::string&)
104{
105}
106
107
108void Preparator::prepare(std::size_t pos, const Poco::UTF16String&)
109{
110}
111
112
113void Preparator::prepare(std::size_t pos, const Poco::SQL::BLOB&)
114{
115}
116
117
118void Preparator::prepare(std::size_t pos, const Poco::SQL::CLOB&)
119{
120}
121
122
123void Preparator::prepare(std::size_t pos, const Poco::SQL::Date&)
124{
125}
126
127
128void Preparator::prepare(std::size_t pos, const Poco::SQL::Time&)
129{
130}
131
132
133void Preparator::prepare(std::size_t pos, const Poco::DateTime&)
134{
135}
136
137
138void Preparator::prepare(std::size_t pos, const Poco::Any&)
139{
140}
141
142
143void Preparator::prepare(std::size_t pos, const Poco::Dynamic::Var&)
144{
145}
146
147
148} } } // namespace Poco::SQL::Test
149