File indexing completed on 2025-02-23 05:15:20
0001 // 0002 // Copyright (C) 2004-2008 Maciej Sobczak, Stephen Hutton 0003 // Distributed under the Boost Software License, Version 1.0. 0004 // (See accompanying file LICENSE_1_0.txt or copy at 0005 // http://www.boost.org/LICENSE_1_0.txt) 0006 // 0007 0008 #define SOCI_POSTGRESQL_SOURCE 0009 #include "soci/postgresql/soci-postgresql.h" 0010 #include <libpq/libpq-fs.h> // libpq 0011 #include <cctype> 0012 #include <cstdio> 0013 #include <cstring> 0014 #include <ctime> 0015 #include <sstream> 0016 0017 #ifdef _MSC_VER 0018 #pragma warning(disable:4355) 0019 #endif 0020 0021 using namespace soci; 0022 using namespace soci::details; 0023 0024 0025 postgresql_rowid_backend::postgresql_rowid_backend( 0026 postgresql_session_backend & /* session */) 0027 : value_(0) 0028 { 0029 } 0030 0031 postgresql_rowid_backend::~postgresql_rowid_backend() 0032 { 0033 // nothing to do here 0034 }