1//
2// SQL.h
3//
4// Library: SQL
5// Package: SQLCore
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 SQL_Constants_INCLUDED
18#define SQL_Constants_INCLUDED
19
20
21#undef max
22#include <limits>
23#include <cstddef>
24
25
26namespace Poco {
27namespace SQL {
28
29
30static const std::size_t POCO_DATA_INVALID_ROW = std::numeric_limits<std::size_t>::max();
31
32
33} } // namespace Poco::SQL
34
35
36#endif // Data_Constants_INCLUDED
37