/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/connection.h

  • Committer: edam
  • Date: 2012-01-23 14:27:08 UTC
  • Revision ID: edam@waxworlds.org-20120123142708-w12277ptwtlspa6f
updated email and web addresses

Show diffs side-by-side

added added

removed removed

1
1
/*
2
 
 * database.h
 
2
 * connection.h
3
3
 *
4
 
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
 
4
 * Copyright (C) 2009 Tim Marston <tim@ed.am>
5
5
 *
6
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.
 
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.
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/>.
21
21
 */
22
22
 
23
 
#ifndef SQLITE3CC_DATABASE_H_
24
 
#define SQLITE3CC_DATABASE_H_
 
23
#ifndef SQLITE3CC_CONNECTION_H_
 
24
#define SQLITE3CC_CONNECTION_H_
25
25
 
26
26
 
27
27
#include <sqlite3.h>
28
28
#include <boost/utility.hpp>
 
29
#include <string>
29
30
 
30
31
 
31
32
namespace sqlite
32
33
{
33
34
 
34
35
 
35
 
class basic_statement;
36
 
class transaction;
37
 
 
38
 
 
39
 
class database
 
36
namespace detail {
 
37
        class basic_statement;
 
38
        class basic_transaction;
 
39
}
 
40
 
 
41
 
 
42
class connection
40
43
        :
41
44
        private boost::noncopyable
42
45
{
43
46
//______________________________________________________________________________
 
47
//                                                                         types
 
48
public:
 
49
 
 
50
        /**
 
51
         * Class to provide a scope lock for the connection mutex
 
52
         */
 
53
        class mutex_guard
 
54
        {
 
55
        public:
 
56
 
 
57
                /**
 
58
                 * Constructor that provides a connection upon which to act.
 
59
                 *
 
60
                 * @param connection reference to a connection
 
61
                 * @see sqlite3_db_mutex()
 
62
                 * @see sqlite3_mutex_enter()
 
63
                 */
 
64
                mutex_guard(
 
65
                        connection &connection );
 
66
 
 
67
                ~mutex_guard();
 
68
 
 
69
                /**
 
70
                 * Release the mutex early.
 
71
                 *
 
72
                 * @see sqlite3_mutex_leave()
 
73
                 */
 
74
                void leave();
 
75
 
 
76
        private:
 
77
                sqlite3_mutex *_mutex;
 
78
        };
 
79
 
 
80
//______________________________________________________________________________
44
81
//                                                                 instantiation
45
82
public:
46
83
 
47
84
        /**
48
85
         * Constructor that specifies the filename of a database to open.
 
86
         *
49
87
         * @param filename the filename of the database file to open
50
88
         * @throws database_error on error
51
89
         */
52
 
        explicit database(
 
90
        explicit connection(
53
91
                const std::string &filename );
54
92
 
55
 
        explicit database();
56
 
        virtual ~database() throw( );
 
93
        explicit connection();
 
94
        virtual ~connection();
57
95
 
58
96
//______________________________________________________________________________
59
97
//                                                              public interface
61
99
 
62
100
        /**
63
101
         * Open a database.
 
102
         *
64
103
         * @param filename the filename of the database file to open
65
104
         * @param flags flags appropriate for sqlite3_open_v2()
66
105
         * @returns an sqlite error code
72
111
 
73
112
        /**
74
113
         * Close an open database.
 
114
         *
75
115
         * @throws database_error on error
76
116
         * @see sqlite3_close()
77
117
         */
78
118
        void close();
79
119
 
80
120
        /**
81
 
         * Execute an SQL statement.
 
121
         * Execute an SQL statement.  An exception is thrown on error.
 
122
         *
82
123
         * @param sql an SQL statement in UTF-8
83
 
         * @return an sqlite error code
84
124
         * @see sqlite3_exc()
85
125
         */
86
 
        int exec(
 
126
        void exec(
87
127
                const std::string &sql );
88
128
 
89
129
        /**
90
 
         * Sets a default busy handler which will
91
 
         * wait for the specified number of milliseconds.
92
 
         * @param milliseconds number of milliseconds to wait
 
130
         * Sets a default busy handler which will wait for the specified number of
 
131
         * milliseconds.
 
132
         *
 
133
         * @param duration number of milliseconds to wait
93
134
         * @returns an sqlite error code
94
135
         * @see sqlite3_busy_timeout()
95
136
         */
100
141
//                                                                implementation
101
142
private:
102
143
 
103
 
        friend class basic_statement;
 
144
        friend class detail::basic_statement;
 
145
        friend class detail::basic_transaction;
104
146
        friend class command;
 
147
        friend class sqlite_error;
105
148
 
106
 
        /** the database handle */
 
149
        /** the connection handle */
107
150
        sqlite3 *_handle;
108
151
 
109
152
};
112
155
} // namespace sqlite
113
156
 
114
157
 
115
 
#endif /* SQLITE3CC_DATABASE_H_ */
 
158
#endif /* SQLITE3CC_CONNECTION_H_ */