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