/sqlite3cc

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

« back to all changes in this revision

Viewing changes to include/sqlite3cc/command.h

  • Committer: edam
  • Date: 2012-01-23 13:46:27 UTC
  • Revision ID: edam@waxworlds.org-20120123134627-i6hi9aftfvwgp8vw
updated autotols stuff

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * command.h
3
3
 *
4
 
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
5
 *
6
6
 * This file is part of sqlite3cc (hereafter referred to as "this program").
7
 
 * See http://ed.am/dev/sqlite3cc for more information.
8
 
 *
9
 
 * This program is free software: you can redistribute it and/or modify it under
10
 
 * the terms of the GNU Lesser General Public License as published by the Free
11
 
 * Software Foundation, either version 3 of the License, or (at your option) any
12
 
 * later version.
13
 
 *
14
 
 * This program is distributed in the hope that it will be useful, but WITHOUT
15
 
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16
 
 * FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
17
 
 * details.
 
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
18
 *
19
19
 * You should have received a copy of the GNU Lesser General Public License
20
20
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
25
 
26
26
 
27
27
#include <sqlite3cc/basic_statement.h>
28
 
#include <string>
29
28
 
30
29
 
31
30
namespace sqlite
33
32
 
34
33
 
35
34
/**
36
 
 * The command class represents an SQL command.  Since there is very little
 
35
 * The command class represents an SQL command. Since there is very little
37
36
 * difference between a command an a statement, it is basically a shim around
38
37
 * the statement class with the addition of an exec() method to execute the
39
38
 * command.
49
48
        /**
50
49
         * Constructor that provides a connection upon which to act and the SQL
51
50
         * command to execute.
52
 
         *
53
51
         * @param connection a reference to a connection
54
52
         * @param sql an SQL statement in UTF-8
55
53
         */
59
57
 
60
58
        /**
61
59
         * Constructor that provides a connection upon which to act.
62
 
         *
63
60
         * @param connection a reference to a connection
64
61
         */
65
62
        explicit command(
71
68
 
72
69
        /**
73
70
         * Prepare an SQL statement.
74
 
         *
75
71
         * @param sql an SQL statement in UTF-8
76
72
         * @returns an sqlite error code
77
73
         * @see sqlite3_prepare_v2()
80
76
                const std::string &sql );
81
77
 
82
78
        /**
83
 
         * Step through one execution cycle of the SQL statement.  If this is an SQL
 
79
         * Step through one execution cycle of the SQL statement. If this is an SQL
84
80
         * statement that doesn't return any rows, only one cycle is required,
85
81
         * otherwise, each cycle will return another row
86
 
         *
87
82
         * @return an sqlite error code
88
83
         * @see sqlite3_step()
89
84
         */
90
85
        int step();
91
86
 
92
87
        /**
93
 
         * Execute the command.  This is the same as doing a step().
94
 
         *
 
88
         * Execute the command. This is the same as doing a step().
95
89
         * @return an sqlite error code
96
90
         * @see sqlite3_step()
97
91
         */
102
96
 
103
97
        /**
104
98
         * Get the number of changes made by the last successful execution of this
105
 
         * command.  This doesn't include changes made in trigger subcontexts.
106
 
         *
 
99
         * command. This doesn't include changes made in trigger subcontexts.
107
100
         * @return the number of changed rows
108
101
         * @see sqlite3_changes()
109
102
         */
114
107
 
115
108
        /**
116
109
         * Get the number of changes made by the last successful execution of this
117
 
         * command.  This includes changes made in all trigger subcontexts.
118
 
         *
 
110
         * command. This includes changes made in all trigger subcontexts.
119
111
         * @return the number of changed rows
120
112
         * @see sqlite3_total_changes()
121
113
         */
127
119
        /**
128
120
         * Get the rowid of the last row inserted via a successful INSERT command
129
121
         * (regardless of whether that is this command or not).
130
 
         *
131
122
         * @return the last inserted rowid
132
123
         */
133
124
        inline long long last_insert_rowid()