File indexing completed on 2025-07-13 05:08:30

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_SOURCE
0009 #include "soci/rowid.h"
0010 #include "soci/session.h"
0011 
0012 using namespace soci;
0013 using namespace soci::details;
0014 
0015 rowid::rowid(session & s)
0016 {
0017     backEnd_ = s.make_rowid_backend();
0018 }
0019 
0020 rowid::~rowid()
0021 {
0022     delete backEnd_;
0023 }