/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to src/command.cc

  • Committer: edam
  • Date: 2009-11-25 20:32:34 UTC
  • Revision ID: edam@waxworlds.org-20091125203234-24i7mzd60c7o46py
- initial commit
- basic support for: database, statements, commands, transactions, exceptions
- initial test app
- initial liscence and readme

Show diffs side-by-side

added added

removed removed

1
 
/*
2
 
 * command.cc
3
 
 *
4
 
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
 
 *
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.
8
 
 *
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.
13
 
 *
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.
18
 
 *
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/>.
21
 
 */
22
 
 
23
 
#include <sqlite3cc/command.h>
24
 
#include <sqlite3cc/database.h>
25
 
#include <boost/thread/locks.hpp>
26
 
#include <cassert>
27
 
 
28
 
 
29
 
boost::recursive_mutex sqlite::command::_command_mutex;
30
 
 
31
 
 
32
 
sqlite::command::command(
33
 
        database &database,
34
 
        const std::string &sql )
35
 
        :
36
 
        basic_statement( database, sql ),
37
 
        _changes( 0 ),
38
 
        _total_changes( 0 ),
39
 
        _last_insert_rowid( 0 )
40
 
{
41
 
        assert( sqlite3_column_count( _handle ) == 0 );
42
 
}
43
 
 
44
 
 
45
 
sqlite::command::command(
46
 
        database &database )
47
 
        :
48
 
        basic_statement( database ),
49
 
        _changes( 0 ),
50
 
        _total_changes( 0 ),
51
 
        _last_insert_rowid( 0 )
52
 
{
53
 
}
54
 
 
55
 
 
56
 
int sqlite::command::prepare(
57
 
        const std::string &sql )
58
 
{
59
 
        int error_code = basic_statement::prepare( sql );
60
 
        assert( error_code != SQLITE_OK || sqlite3_column_count( _handle ) == 0 );
61
 
        return error_code;
62
 
}
63
 
 
64
 
 
65
 
int sqlite::command::step()
66
 
{
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 );
73
 
        }
74
 
        return error_code;
75
 
}