//--------------------------------
// 工作函数
//--------------------------------
//读取记录
//主要工作函数,根据所给的条件从表中读取相应的记录
//返回值是一个二维数组,Result[记录号][字段名]
function ReadList() {
$SQL="SELECT * FROM ".$this-Table." ".$this-Condition." ORDER BY ".$this-Id." DESC";
$stmt = OCIParse($this-LinkId,$SQL);
$bool = OCIExecute($stmt);
if (!$bool) {
echo "连接失败!";
OCILogoff($this-LinkId);
exit;
}
else {
$ncols = OCINumCols($stmt);
for ( $...[ 查看全文 ]