代码拉取完成,页面将自动刷新
同步操作将从 openGauss/openGauss-connector-odbc 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
*
* Description: See "environ.c"
*
* Comments: See "readme.txt" for copyright and license information.
*
*/
#ifndef __ENVIRON_H__
#define __ENVIRON_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "psqlodbc.h"
#if defined (POSIX_MULTITHREAD_SUPPORT)
#include <pthread.h>
#endif
#define ENV_ALLOC_ERROR 1
/********** Environment Handle *************/
struct EnvironmentClass_
{
char *errormsg;
int errornumber;
Int4 flag;
#if defined(WIN_MULTITHREAD_SUPPORT)
CRITICAL_SECTION cs;
#elif defined(POSIX_MULTITHREAD_SUPPORT)
pthread_mutex_t cs;
#endif /* WIN_MULTITHREAD_SUPPORT */
};
/* Environment prototypes */
EnvironmentClass *EN_Constructor(void);
char EN_Destructor(EnvironmentClass *self);
char EN_get_error(EnvironmentClass *self, int *number, char **message);
char EN_add_connection(EnvironmentClass *self, ConnectionClass *conn);
char EN_remove_connection(EnvironmentClass *self, ConnectionClass *conn);
void EN_log_error(const char *func, char *desc, EnvironmentClass *self);
int getConnCount(void);
ConnectionClass * const *getConnList(void);
#define EN_OV_ODBC2 1L
#define EN_CONN_POOLING (1L<<1)
#define EN_is_odbc2(env) ((env->flag & EN_OV_ODBC2) != 0)
#define EN_is_odbc3(env) (env && (env->flag & EN_OV_ODBC2) == 0)
#define EN_set_odbc2(env) (env->flag |= EN_OV_ODBC2)
#define EN_set_odbc3(env) (env->flag &= ~EN_OV_ODBC2)
#define EN_is_pooling(env) (env && (env->flag & EN_CONN_POOLING) != 0)
#define EN_set_pooling(env) (env->flag |= EN_CONN_POOLING)
#define EN_unset_pooling(env) (env->flag &= ~EN_CONN_POOLING)
/* For Multi-thread */
#if defined( WIN_MULTITHREAD_SUPPORT)
#define INIT_CONNS_CS InitializeCriticalSection(&conns_cs)
#define ENTER_CONNS_CS EnterCriticalSection(&conns_cs)
#define LEAVE_CONNS_CS LeaveCriticalSection(&conns_cs)
#define DELETE_CONNS_CS DeleteCriticalSection(&conns_cs)
#define INIT_ENV_CS(x) InitializeCriticalSection(&((x)->cs))
#define ENTER_ENV_CS(x) EnterCriticalSection(&((x)->cs))
#define LEAVE_ENV_CS(x) LeaveCriticalSection(&((x)->cs))
#define DELETE_ENV_CS(x) DeleteCriticalSection(&((x)->cs))
#define INIT_COMMON_CS InitializeCriticalSection(&common_cs)
#define ENTER_COMMON_CS EnterCriticalSection(&common_cs)
#define LEAVE_COMMON_CS LeaveCriticalSection(&common_cs)
#define DELETE_COMMON_CS DeleteCriticalSection(&common_cs)
#elif defined(POSIX_MULTITHREAD_SUPPORT)
#define INIT_CONNS_CS pthread_mutex_init(&conns_cs,0)
#define ENTER_CONNS_CS pthread_mutex_lock(&conns_cs)
#define LEAVE_CONNS_CS pthread_mutex_unlock(&conns_cs)
#define DELETE_CONNS_CS pthread_mutex_destroy(&conns_cs)
#define INIT_ENV_CS(x) pthread_mutex_init(&((x)->cs),0)
#define ENTER_ENV_CS(x) pthread_mutex_lock(&((x)->cs))
#define LEAVE_ENV_CS(x) pthread_mutex_unlock(&((x)->cs))
#define DELETE_ENV_CS(x) pthread_mutex_destroy(&((x)->cs))
#define INIT_COMMON_CS pthread_mutex_init(&common_cs,0)
#define ENTER_COMMON_CS pthread_mutex_lock(&common_cs)
#define LEAVE_COMMON_CS pthread_mutex_unlock(&common_cs)
#define DELETE_COMMON_CS pthread_mutex_destroy(&common_cs)
#else
#define INIT_CONNS_CS
#define ENTER_CONNS_CS
#define LEAVE_CONNS_CS
#define DELETE_CONNS_CS
#define INIT_ENV_CS(x)
#define ENTER_ENV_CS(x)
#define LEAVE_ENV_CS(x)
#define DELETE_ENV_CS(x)
#define INIT_COMMON_CS
#define ENTER_COMMON_CS
#define LEAVE_COMMON_CS
#define DELETE_COMMON_CS
#endif /* WIN_MULTITHREAD_SUPPORT */
void shortterm_common_lock(void);
void shortterm_common_unlock(void);
#ifdef __cplusplus
}
#endif
#endif /* __ENVIRON_H_ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。