mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 12:51:13 +08:00
7f04435576
* Add an example of using a connection pool. * Add documentation about the connection pools. Expand the documentation about multi-threading issues.
8 lines
167 B
C++
8 lines
167 B
C++
#pragma once
|
|
|
|
#include <db_connection.h>
|
|
|
|
extern thread_local db_connection g_dbc;
|
|
|
|
void db_global_init(std::shared_ptr<sqlpp::postgresql::connection_config> config);
|