blob: a6fa4e1e1450338e972f88ca5af2c8499b3797a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// file : libcommon/common/common.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#include <cstdlib> // std::exit
#include <iostream>
#include <common/config.hxx>
#include <odb/database.hxx>
#if defined(DATABASE_MYSQL)
# include <odb/mysql/database.hxx>
# include <odb/mysql/connection-factory.hxx>
#elif defined(DATABASE_SQLITE)
# include <odb/transaction.hxx>
# include <odb/schema-catalog.hxx>
# include <odb/sqlite/database.hxx>
# include <odb/sqlite/connection-factory.hxx>
#else
# error unknown database
#endif
#include <common/common.hxx>
using namespace std;
using namespace odb::core;
#if defined(DATABASE_MYSQL)
namespace mysql = odb::mysql;
#elif defined(DATABASE_SQLITE)
namespace sqlite = odb::sqlite;
#endif
auto_ptr<database>
create_database (int& argc,
char* argv[],
#if defined(DATABASE_SQLITE)
bool schema,
#else
bool,
#endif
size_t max_connections)
{
if (argc > 1 && argv[1] == string ("--help"))
{
cerr << "Usage: " << argv[0] << " [options]" << endl
<< "Options:" << endl;
#if defined(DATABASE_MYSQL)
mysql::database::print_usage (cerr);
#elif defined(DATABASE_SQLITE)
sqlite::database::print_usage (cerr);
#endif
exit (0);
}
auto_ptr<database> db;
#if defined(DATABASE_MYSQL)
auto_ptr<mysql::connection_factory> f;
if (max_connections != 0)
f.reset (new mysql::connection_pool_factory (max_connections));
db.reset (new mysql::database (argc, argv, false, 0, f));
#elif defined(DATABASE_SQLITE)
auto_ptr<sqlite::connection_factory> f;
if (max_connections != 0)
f.reset (new sqlite::connection_pool_factory (max_connections));
db.reset (
new sqlite::database (
argc, argv, false, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, f));
// Create the database schema.
//
if (schema)
{
transaction t (db->begin ());
schema_catalog::create_schema (*db);
t.commit ();
}
#endif
return db;
}
|