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