OpenASIP
2.0
src
tools
SQLite.hh
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2009 Tampere University.
3
4
This file is part of TTA-Based Codesign Environment (TCE).
5
6
Permission is hereby granted, free of charge, to any person obtaining a
7
copy of this software and associated documentation files (the "Software"),
8
to deal in the Software without restriction, including without limitation
9
the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
and/or sell copies of the Software, and to permit persons to whom the
11
Software is furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in
14
all copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
DEALINGS IN THE SOFTWARE.
23
*/
24
/**
25
* @file SQLite.hh
26
*
27
* Class definition of SQLite class.
28
*
29
* @author Pekka Jääskeläinen 2004 (pekka.jaaskelainen-no.spam-tut.fi)
30
*
31
* @note rating: red
32
*/
33
34
#ifndef TTA_SQLITE_DB_HH
35
#define TTA_SQLITE_DB_HH
36
37
#include <string>
38
39
#include "
RelationalDB.hh
"
40
#include "
SQLiteConnection.hh
"
41
42
/**
43
* Implementation of RelationalDB interface for SQLite library.
44
*/
45
class
SQLite
:
public
RelationalDB
{
46
public
:
47
SQLite
();
48
virtual
~SQLite
();
49
50
virtual
RelationalDBConnection
&
connect
(
51
const
std::string& database,
const
std::string& login =
""
,
52
const
std::string& password =
""
,
bool
readOnly =
false
);
53
54
virtual
void
close
(
const
RelationalDBConnection
& connection);
55
56
private
:
57
/// Only one simultaneous active connection per SQLite instance allowed
58
/// currently.
59
SQLiteConnection
*
activeConnection_
;
60
61
};
62
63
#endif
64
SQLite::SQLite
SQLite()
Definition:
SQLite.cc:44
RelationalDBConnection
Definition:
RelationalDBConnection.hh:48
SQLiteConnection.hh
RelationalDB.hh
SQLite::connect
virtual RelationalDBConnection & connect(const std::string &database, const std::string &login="", const std::string &password="", bool readOnly=false)
Definition:
SQLite.cc:69
SQLite::~SQLite
virtual ~SQLite()
Definition:
SQLite.cc:50
RelationalDB
Definition:
RelationalDB.hh:47
SQLite::close
virtual void close(const RelationalDBConnection &connection)
Definition:
SQLite.cc:100
SQLite::activeConnection_
SQLiteConnection * activeConnection_
Only one simultaneous active connection per SQLite instance allowed currently.
Definition:
SQLite.hh:59
SQLite
Definition:
SQLite.hh:45
SQLiteConnection
Definition:
SQLiteConnection.hh:47
Generated by
1.8.17