4
* Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
6
* This file is part of sqlite3cc (hereafter referred to as "this program").
7
* See http://www.waxworlds.org/edam/software/sqlite3cc for more information.
9
* This program is free software: you can redistribute it and/or modify
10
* it under the terms of the GNU Lesser General Public License as published
11
* by the Free Software Foundation, either version 3 of the License, or
12
* (at your option) any later version.
14
* This program is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
* GNU Lesser General Public License for more details.
19
* You should have received a copy of the GNU Lesser General Public License
20
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23
#include <sqlite3cc/command.h>
24
#include <sqlite3cc/database.h>
25
#include <boost/thread/locks.hpp>
29
boost::recursive_mutex sqlite::command::_command_mutex;
32
sqlite::command::command(
34
const std::string &sql )
36
basic_statement( database, sql ),
39
_last_insert_rowid( 0 )
41
assert( sqlite3_column_count( _handle ) == 0 );
45
sqlite::command::command(
48
basic_statement( database ),
51
_last_insert_rowid( 0 )
56
int sqlite::command::prepare(
57
const std::string &sql )
59
int error_code = basic_statement::prepare( sql );
60
assert( error_code != SQLITE_OK || sqlite3_column_count( _handle ) == 0 );
65
int sqlite::command::step()
67
boost::lock_guard< boost::recursive_mutex > lock( _command_mutex );
68
int error_code = basic_statement::step();
69
if( error_code == SQLITE_OK ) {
70
_changes = sqlite3_changes( _database._handle );
71
_total_changes = sqlite3_total_changes( _database._handle );
72
_last_insert_rowid = sqlite3_last_insert_rowid( _database._handle );