File indexing completed on 2025-02-23 05:15:15
0001 // 0002 // Copyright (C) 2013 Mateusz Loskot <mateusz@loskot.net> 0003 // Copyright (C) 2011-2013 Denis Chapligin 0004 // Copyright (C) 2004-2006 Maciej Sobczak, Stephen Hutton 0005 // Distributed under the Boost Software License, Version 1.0. 0006 // (See accompanying file LICENSE_1_0.txt or copy at 0007 // http://www.boost.org/LICENSE_1_0.txt) 0008 // 0009 0010 #ifndef SOCI_DB2_COMMON_H_INCLUDED 0011 #define SOCI_DB2_COMMON_H_INCLUDED 0012 0013 #include <cstddef> 0014 0015 namespace soci { namespace details { namespace db2 { 0016 0017 const std::size_t cli_max_buffer = 1024 * 1024 * 1024; //CLI limit is about 3 GB, but 1GB should be enough 0018 0019 }}} // namespace soci::details::db2 0020 0021 #endif // SOCI_DB2_COMMON_H_INCLUDED