mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 17:00:52 +08:00
106 lines
1.7 KiB
C++
106 lines
1.7 KiB
C++
|
#pragma once
|
|||
|
#include "acl_cpp/acl_cpp_define.hpp"
|
|||
|
#include "acl_cpp/stdlib/string.hpp"
|
|||
|
#include "acl_cpp/db/db_handle.hpp"
|
|||
|
|
|||
|
typedef struct pg_conn PGconn;
|
|||
|
|
|||
|
namespace acl {
|
|||
|
|
|||
|
class pgsql_conf;
|
|||
|
|
|||
|
class ACL_CPP_API db_pgsql : public db_handle
|
|||
|
{
|
|||
|
public:
|
|||
|
db_pgsql(const pgsql_conf& conf);
|
|||
|
~db_pgsql(void);
|
|||
|
|
|||
|
static void load(void);
|
|||
|
|
|||
|
/********************************************************************/
|
|||
|
/* <20><><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD> db_handle <20><><EFBFBD><EFBFBD><EFBFBD>ӿ<EFBFBD> */
|
|||
|
/********************************************************************/
|
|||
|
|
|||
|
const char* dbtype(void) const;
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
int get_errno(void) const;
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
const char* get_error(void) const;
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool dbopen(const char* charset = NULL);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool is_opened(void) const;
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool close(void);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool tbl_exists(const char* tbl_name);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool sql_select(const char* sql, db_rows* result = NULL);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool sql_update(const char* sql);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
int affect_count(void) const;
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool begin_transaction(void);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool commit(void);
|
|||
|
|
|||
|
/**
|
|||
|
* @override
|
|||
|
*/
|
|||
|
bool rollback(void);
|
|||
|
|
|||
|
private:
|
|||
|
char* dbaddr_; // <20><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ
|
|||
|
char* dbname_; // <20><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>
|
|||
|
char* dbuser_; // <20><><EFBFBD>ݿ<EFBFBD><DDBF>˺<EFBFBD>
|
|||
|
char* dbpass_; // <20><><EFBFBD>ݿ<EFBFBD><DDBF>˺<EFBFBD><CBBA><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
string charset_; // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD>õ<EFBFBD><C3B5>ַ<EFBFBD><D6B7><EFBFBD>
|
|||
|
|
|||
|
int conn_timeout_;
|
|||
|
int rw_timeout_;
|
|||
|
|
|||
|
PGconn* conn_;
|
|||
|
int affect_count_;
|
|||
|
|
|||
|
void sane_pgsql_init(const char* dbaddr, const char* dbname,
|
|||
|
const char* dbuser, const char* dbpass, int conn_timeout,
|
|||
|
int rw_timeout, const char* charset);
|
|||
|
void* sane_pgsql_query(const char* sql);
|
|||
|
};
|
|||
|
|
|||
|
} // namespace acl
|