MSTL 1.4.0
A Modern C++ Library with extended functionality, web components, and utility libraries
载入中...
搜索中...
未找到
postgresql_config.hpp
1#ifndef MSTL_DATABASE_POSTGRESQL_CONFIG_HPP__
2#define MSTL_DATABASE_POSTGRESQL_CONFIG_HPP__
3#ifdef MSTL_SUPPORT_POSTGRESQL__
4#include <libpq-fe.h>
5#include "MSTL/core/config/undef_cmacro.hpp"
8MSTL_BEGIN_POSTGRESQL__
9using ::PGconn;
10using ::PGresult;
11using ::ExecStatusType;
12using ::PQntuples;
13using ::PQnfields;
14using ::PQclear;
15using ::PQgetisnull;
16using ::PQgetvalue;
17using ::PQgetlength;
18using ::PQunescapeBytea;
19using ::PQfreemem;
20using ::PQexec;
21using ::PQprepare;
22using ::PQresultStatus;
23using ::PQerrorMessage;
24using ::PQexecPrepared;
25using ::PQconnectdb;
26using ::PQstatus;
27using ::PQfinish;
28using ::CONNECTION_OK;
29using ::PGRES_TUPLES_OK;
30using ::PGRES_COMMAND_OK;
31MSTL_END_POSTGRESQL__
33#endif
34#endif // MSTL_DATABASE_POSTGRESQL_CONFIG_HPP__
MSTL核心配置
#define MSTL_END_NAMESPACE__
结束全局命名空间MSTL
#define MSTL_BEGIN_NAMESPACE__
开始全局命名空间MSTL