📄 pdbrecordset.class.php
字号:
<?php
/**
* \ingroup PDb
*
* Abstract representation of a record set. Child classes are expected to extend this class
* to provide database-specific handling of record sets
*/
class PdbRecordSet
{
var $_dbRes;
function PdbRecordSet( $dbRes = null )
{
$this->_dbRes = $dbRes;
}
/**
* Returns a row from the resultset
*
* @return an associative array
*/
function FetchRow()
{
// to be implemented by chid classes
}
/**
* Returns the number of rows fetched in the last SELECT operation
*
* @return an integer
*/
function RecordCount()
{
}
/**
* Alias for RecordCount()
*
* @see RecordCount
*/
function RowCount()
{
return( $this->RecordCount());
}
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -