1 //
2 // Data.h
3 //
4 // Library: Data
5 // Package: DataCore
6 // Module:  Constants
7 //
8 // Constant definitions for the Poco Data library.
9 //
10 // Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
11 // and Contributors.
12 //
13 // SPDX-License-Identifier:	BSL-1.0
14 //
15 
16 
17 #ifndef Data_Constants_INCLUDED
18 #define Data_Constants_INCLUDED
19 
20 
21 #undef max
22 #include <limits>
23 #include <cstddef>
24 
25 
26 namespace Poco {
27 namespace Data {
28 
29 
30 static const std::size_t POCO_DATA_INVALID_ROW = std::numeric_limits<std::size_t>::max();
31 
32 
33 } } // namespace Poco::Data
34 
35 
36 #endif // Data_Constants_INCLUDED
37