Viewing file: mo_rg_precourse.php (2.11 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_PreCourse.php");
class Mo_rg_precourse extends Da_rg_PreCourse {
/**
* หน้าที่ของฟังก์ชั่น คือ หารายวิชาที่ต้องเรียนก่อนที่พบบ่อยตามเงื่อนไข
*
* @access public
* @param array condition โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขของคำสั่ง SELECT
* @param array order โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการเรียงลำดับ ORDER BY
* @param array group โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการจัดกลุ่ม GROUP BY
* @return query >= 1 rows : rg_Precourse.*
* @todo use
*/
public function qryPrc($condition="",$order="",$group="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$group = $this->checkGroupBy($group);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$c3 = substr($group, 0, -1);
$sql = "SELECT *
FROM $this->rg_dbname.rg_PreCourse
$c1
$c3
$c2";
$query = $this->db->query($sql);
return $query;
}
public function qryByCrsIdOrderSeqLimit2($crsId, $start, $pageSize) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_PreCourse, $this->rg_dbname.rg_Course
WHERE prcCrsId=?
AND prcPrCrsId=crsId
ORDER BY prcSeq
LIMIT ?, ?";
$query = $this->db->query($sql, array($crsId, $start, $pageSize));
return $query;
}
public function getNextSeqByCrsId($crsId) {
$sql = "SELECT MAX(prcSeq) AS num
FROM $this->rg_dbname.rg_PreCourse
WHERE prcCrsId=?";
$query = $this->db->query($sql, array($crsId));
if($row = $query->row())
return $row->num+1;
}
}
?>
|