转一个SQL Ralay数据库连接池的PHP操作类
数据|数据库|数据库连接
原文说明:目前此类只支持Sybase,稍加扩展就可以同时支持其它多种数据库,功能还不完善,但是基本上够用
,另外,还没有写说明文档,先放上来,有需要的朋友可以拿去看看,需要SQL Relay支持哦。
【操作类代码】
// pdbconn.inc.php
/**
* 全局常量定义
*
*/
define("SYBASE", 0);
define("ORACLE", 1);
define("SUCCESS", 1);
define("FAILED", -1);
define("DEBUG", 1);
/**
* 数据库连接类
* 开始于:2006年1月10日
* 作者 :秋衫客 (cntoby@gmail.com)
*
* 功能描述:数据库查询及连接池维护
* 暂时不支持ORACLE
*/
class dbconn {
var $_conn; // 当前连接ID
var $_cur; //
var $_dbhost = "localhost"; // 数据库服务器名
var $_dbport = 9000; // 数据库端口号
var $_dbuser = "dev"; // 登录数据库的用户名
var $_dbpass = "dev"; // 登录数据库的密码
var $_dbsock = "null"; // 数据库连接的Unix套接字
var $_dbflag = SYBASE; // 数据库类型
var $_dbflagS = "sybase"; // SQLRelay中数据库类型标志
var $_dbrtrt = 0; // 连接失败后间接多长时间重试
var $_dbtries = 1; // 重试次数
var $_debug = false; // 是否为DEBUG模式
var $_cursql = ""; // 当前存在的SQL文
var $_lastrt = true; // 最后一次执行的结果,成功与否boolean
var $_queryrs = null; // 查询过程中的结果
var $rs = null; // 最后一次执行结果
var $recordcount = 0; // 当次返回记录总数
var $absolute = 0; // 当前页码
var $pagesize = 0; // 每页显示记录数
var $pagecount = 1; // 本次查询总页数
var $total = 0; // 总记录数
/**
* 构造函数,在本函数内初始化连接及连接池
* 构造函数的参数说明:
* 不用任何参数可使用默认参数连接数据库
* 当使用参数时,可以使用1到5个参数,顺序为
* dbhost 数据库服务器名
* dbuser 登录数据库用户名
* dbpass 登录数据库密码
* dbsock 数据库连接的Unix套接字
* dbport 数据库端口号
* dbflag 数据库类型,可选类型为SYBASE或ORACLE
*
* @return dbconn
*/
function dbconn() {
$argc = func_num_args();
$argv = func_get_args();
$this->_dbhost = (!empty($argv[0]))?$argv[0]:$this->_dbhost;
$this->_dbuser = (!empty($argv[1]))?$argv[1]:$this->_dbuser;
$this->_dbpass = (!empty($argv[2]))?$argv[2]:$this->_dbpass;
$this->_dbsock = (!empty($argv[3]))?$argv[3]:$this->_dbsock;
$this->_dbport = (!empty($argv[4]))?$argv[4]:$this->_dbport;
$this->_dbflag = (!empty($argv[5]))?$argv[5]:$this->_dbflag;
$this->_dbrtrt = (!empty($argv[6]))?$argv[6]:$this->_dbrtrt;
$this->_dbtries = (!empty($argv[7]))?$argv[7]:$this->_dbtries;
$this->_debug = defined("DEBUG");
switch ($this->_dbflag) {
case SYBASE:
$this->_conn = @sqlrcon_alloc($this->_dbhost, $this->_dbport, $this->_dbsock, $this->_dbuser, $this->_dbpass, $this->_dbrtrt, $this->_dbtries);
$this->_cur = @sqlrcur_alloc($this->_conn);
if(@sqlrcon_identify($this->_conn)!="sybase"||@sqlrcon_ping($this->_conn)!=1) {
return FAILED;
}
break;
case ORACLE:
$this->_conn = @sqlrcon_alloc($this->_dbhost, $this->_dbport, $this->_dbsock, $this->_dbuser, $this->_dbpass, $this->_dbrtrt, $this->_dbtries);
$this->_cur = @sqlrcur_alloc($this->_conn);
if(substring(@sqlrcon_identify($this->_conn), 0, 6)!="oracle"||@sqlrcon_ping($this->_conn)!=1) {
return FAILED;
}
break;
default:
return FAILED;
break;
}
}
/**
* 设置用于查询的SQL文
*
* @param string $sql
*/
function setsql($sql = "") {
$this->_cursql = $sql;
return SUCCESS;
}
/**
* 重置到初始状态
*
* @return bool
*/
function rset() {
$this->rs = null;
$this->pagecount = 1;
$this->recordcount = 0;
$this->_queryrs = null;
$this->_lastrt = true;
return SUCCESS;
}
/**
* 执行查询,返回查询是否成功,参数可以为一条SQL文,或者一个SQL文数组
*
* @param string $sql
* @return bool
*/
function doexec($sql = "") {
$tran = false;
$isa = false;
$this->rset();
if(""==$sql||empty($sql)) {
$sql = $this->_cursql;
}
if(!is_array($sql)) {
if(!eregi("^select", trim($sql))) {
$tran = true;
}
}else {
$isa = true;
for($i = 0; $i if (!eregi("^select", trim($sql[$i]))) {
$tran = true;
break;
}
}
}
if ($tran) {
$tmp = @sqlrcur_sendQuery($this->_cur, "Begin Transaction");
if($tmp!=1) {
$this->_lastrt = false;
return FAILED;
}
}
if(!$isa) {
$tmp = @sqlrcur_sendQuery($this->_cur, $sql);
}else {
for ($i = 0; $i $tmp = @sqlrcur_sendQuery($this->_cur, $sql[$i]);
if($tmp!=1) break;
}
}
$this->setsql();
if($tmp==1) {
if($tran) @sqlrcur_sendQuery($this->_cur, "Commit Transaction");
$this->_lastrt = true;
}else {
if($tran) @sqlrcur_sendQuery($this->_cur, "Rollback Transaction");
$this->_lastrt = false;
return FAILED;
}
return SUCCESS;
}
/**
* 记录查询,只返回一条记录
*
* @return bool
*/
function doquery_row() {
$this->rset();
if((""==trim($this->_cursql))||empty($this->_cursql)) {
return false;
}
if(SYBASE==$this->_dbflag) {
@sqlrcur_sendQuery($this->_cur, "set rowcount 1");
$tmp = @sqlrcur_sendQuery($this->_cur, $this->_cursql);
if($tmp==1) {
$this->recordcount = @sqlrcur_rowCount($this->_cur);
$this->total = $this->recordcount;
if ($this->recordcount>0) {
$this->rs = @sqlrcur_getRow($this->_cur, 0);
}
}else {
$this->recordcount = -1;
$this->total = $this->recordcount;
@sqlrcur_sendQuery($this->_cur, "set rowcount 0");
return FAILED;
}
@sqlrcur_sendQuery($this->_cur, "set rowcount 0");
}elseif(ORACLE==$this->_dbflag) {
// 暂时不支持ORACLE
$sfmt = @ociparse($this->_conn, $this->_cursql);
$ret = @ociexecute($sfmt, OCI_DEFAULT);
if($ret) {
$this->recordcount = @oci_num_rows($sfmt);
$this->total = $this->recordcount;
if($this->recordcount>0) {
@ocifetchinto($sfmt, &$this->rs);
}
}else {
$this->recordcount = -1;
$this->total = $this->recordcount;
return FAILED;
}
}
$this->setsql();
return SUCCESS;
}
/**
* 记录查询,返回多条记录,可通过设置$rowcount来控制返回记录的最大数
*
* @param int $rowcount
* @return bool
*/
function doquery_rows($rowcount = 0) {
if(!eregi("[0-9]+", $rowcount)) {
$rowcount = 0;
}
$this->rset();
if((""==trim($this->_cursql))||empty($this->_cursql)) {
return FAILED;
}
if(SYBASE==$this->_dbflag) {
@sqlrcur_sendQuery($this->_cur, "set rowcount " .strval($rowcount));
$tmp = @sqlrcur_sendQuery($this->_cur, $this->_cursql);
if($tmp==1) {
$this->recordcount = @sqlrcur_rowCount($this->_cur);
$this->total = $this->recordcount;
if($this->recordcount > 0) {
if(0>=$this->pagesize||null==$this->pagesize) {
$this->pagecount = 1;
$startidx = 0;
$endidx = $this->recordcount - 1;
}else {
if($this->absoluteabsolute=1;
$this->pagecount = ceil($this->recordcount/$this->pagesize);
if($this->absolute>$this->pagecount) $this->absolute = $this->pagecount;
$startidx = $this->pagesize * ($this->absolute-1);
$endidx = $this->pagesize * $this->absolute -1;
}
$rcidx = 0;
// 以下保存结果到$this->rc
for($i = $startidx; $i total; $i++) {
if($rowcount!=0&&$rowcount==$i) break;
$this->rs[$rcidx++] = @sqlrcur_getRow($this->_cur, $i);
}
$this->recordcount = $rcidx;
}
}else {
$this->recordcount = -1;
$this->total = $this->recordcount;
@sqlrcur_sendQuery($this->_cur, "set rowcount 0");
return FAILED;
}
@sqlrcur_sendQuery($this->_cur, "set rowcount 0");
}elseif(ORACLE==$this->_dbflag) {
// 暂时不支持ORACLE
// Oracle 处理部分
$sfmt = @ociparse($this->_conn, $this->_cursql);
$ret = @ociexecute($sfmt, OCI_DEFAULT);
if($ret) {
$this->recordcount = @oci_num_rows($sfmt);
$this->total = $this->recordcount;
if($this->recordcount > 0) {
if($this->pagesizepagesize) {
$this->pagecount = 1;
$startidx = 0;
$endidx = $this->recordcount - 1;
}else {
if($this->absolute absolute = 1;
$this->pagecount = ceil($this->recordcount/$this->pagesize);
if($this->absolute>$this->pagecount) $this->absolute = $this->pagecount;
$startidx = $this->pagesize * ($this->absolute - 1);
$endidx = $this->pagesize * $this->absolute - 1;
// aaaaaaaaaaaaaa
}
}
}else {
$this->recordcount = -1;
$this->total = $this->recordcount;
return FAILED;
}
return FAILED;
}
$this->setsql();
return SUCCESS;
}
/**
* 关闭数据连接
*
* @return bool
*/
function dbclose() {
@sqlrcon_free($this->_conn);
@sqlrcur_free($this->_cur);
}
/**
* 设置或获取每页显示的记录数
*
* @param int $pagesize
* @return int
*/
function pagesize($pagesize = 0) {
if(eregi("[1-9]+", $pagesize)&&$pagesize!=0) {
$this->pagesize = intval($pagesize);
return $this->pagesize;
}else {
return $this->pagesize;
}
}
/**
* 设置或获取当前要显示的页次
*
* @param int $absolute
* @return int
*/
function absolute($absolute = 1) {
if(eregi("[1-9]+", $absolute)&&$absolute>1) {
$this->absolute = intval($absolute);
return $this->absolute;
}else {
return $this->absolute;
}
}
}
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible
