| 1 | // |
| 2 | // AbstractExtraction.cpp |
| 3 | // |
| 4 | // Library: SQL |
| 5 | // Package: SQLCore |
| 6 | // Module: AbstractExtraction |
| 7 | // |
| 8 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
| 9 | // and Contributors. |
| 10 | // |
| 11 | // SPDX-License-Identifier: BSL-1.0 |
| 12 | // |
| 13 | |
| 14 | |
| 15 | #include "Poco/SQL/AbstractExtraction.h" |
| 16 | |
| 17 | |
| 18 | namespace Poco { |
| 19 | namespace SQL { |
| 20 | |
| 21 | |
| 22 | AbstractExtraction::(const std::string& type, Poco::UInt32 limit, |
| 23 | Poco::UInt32 , |
| 24 | bool bulk): |
| 25 | _type(type), |
| 26 | _pExtractor(0), |
| 27 | _limit(limit), |
| 28 | _position(extractionPosition), |
| 29 | _bulk(bulk), |
| 30 | _emptyStringIsNull(false), |
| 31 | _forceEmptyString(false) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | |
| 36 | AbstractExtraction::() |
| 37 | { |
| 38 | } |
| 39 | |
| 40 | |
| 41 | } } // namespace Poco::SQL |
| 42 | |