⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlrconnectionctor.c

📁 适合于Unix/Linux下的一个持久数据库连接池
💻 C
字号:
// Copyright (c) 1999-2001  David Muse// See the file COPYING for more information#include <sqlrconnection.h>sqlrconnection_svr::sqlrconnection_svr() :			daemonprocess(), listener(), debugfile() {	cmdl=NULL;	cfgfl=NULL;	semset=NULL;	idmemory=NULL;	updown=NULL;	tmpdir=NULL;	unixsocket=NULL;	unixsocketptr=NULL;	serversockun=NULL;	serversockin=NULL;	serversockincount=0;	inetport=0;	authc=NULL;	lastuserbuffer[0]=(char)NULL;	lastpasswordbuffer[0]=(char)NULL;	lastauthsuccess=false;	autocommit=0;	checkautocommit=0;	performautocommit=0;	maxquerysize=0;	maxstringbindvaluelength=0;	maxlobbindvaluelength=0;	idleclienttimeout=-1;	connected=false;	// maybe someday these parameters will be configurable	bindpool=new memorypool(512,128,100);	cur=NULL;	sid_sqlrcon=NULL;	pidfile=NULL;	decrementonclose=false;	silent=false;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -