blob: 9a83752b6ea4b1ce7b946f443f174fb300c57590 (
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
|
// file : mod/database -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef MOD_DATABASE
#define MOD_DATABASE
#include <odb/forward.hxx> // database
#include <brep/types>
#include <brep/utility>
namespace brep
{
// Return pointer to the shared database instance, creating one on the first
// call. Throw odb::exception on failure. Is not thread-safe.
//
shared_ptr<odb::core::database>
shared_database (string user,
string password,
string name,
string host,
uint16_t port,
size_t max_connections);
}
#endif // MOD_DATABASE
|