Connection.cc
Go to the documentation of this file.
2 // vim: set sw=2 expandtab :
3 
4 #include "sqlite3.h"
5 
6 using namespace cet::sqlite;
7 
9 {
10  // It is safe to call sqlite3_close on a null db_.
11  sqlite3_close(db_);
12 }
~Connection() noexcept
Definition: Connection.cc:8