本文整理汇总了PHP中POD::connect方法的典型用法代码示例。如果您正苦于以下问题:PHP POD::connect方法的具体用法?PHP POD::connect怎么用?PHP POD::connect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类POD
的用法示例。
在下文中一共展示了POD::connect方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: memberLinkInfo
public function memberLinkInfo($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('studentAssocationMemberItem' => 'stu_union_member', 'studentInfoItem' => 'stu_basic_info');
$table = array('stu_union_member', 'stu_basic_info');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例2: stuLinkClass
public function stuLinkClass($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('studentIdentityItem' => 'stu_identification_info', 'studentInfoItem' => 'stu_basic_info');
$table = array('stu_identification_info', 'stu_basic_info');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例3: logLinkGroupMember
public function logLinkGroupMember($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('researchGroupMemberItem' => 'res_member', 'researchGroupLogItem' => 'res_group_log');
$table = array('res_member', 'res_group_log');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例4: messageLinkContent
public function messageLinkContent($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('messageContentItem' => 'message', 'messageContraceItem' => 'message_interconnect');
$table = array('message', 'message_interconnect');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例5: awardLinkTeacher
public function awardLinkTeacher($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('teacherInfoItem' => 'teacher_basic_info', 'teacherAwardItem' => 'teacher_award');
$table = array('teacher_award', 'teacher_basic_info');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例6: projectLinkGroup
public function projectLinkGroup($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('researchGroupProjectItem' => 'res_group_achievement', 'researchGroupItem' => 'res_group');
$table = array('res_group_achievement', 'res_group');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例7: classLinkStaff
public function classLinkStaff($req, $lk, $arg)
{
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$map = array('classItem' => 'class', 'staffInfoItem' => 'emp_basic_info');
$table = array('class', 'emp_basic_info');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
$res = $db->query($sql);
return $res;
}
示例8: test2Action
public function test2Action()
{
require $_SERVER['DOCUMENT_ROOT'] . '/school' . '/model/pod.php';
$db = new POD();
$p = $db->connect();
if ($p == false) {
throw new Exception('Database connect failed');
}
$req = array();
$lk = array('account');
$req[0] = array('key' => 'account', 'account' => '111', 'table' => 'p');
$arg = array('name', 'password');
$table = array('Person', 'Account');
$map = array('p' => 'Person', 'a' => 'Account');
$sql = $db->genLinkSql($req, $lk, $arg, $table, $map);
//echo $sql;
//exit;
$res = $db->query($sql);
return $res;
}
示例9: showScoreAction
public function showScoreAction()
{
$sql1 = "select c.Course_ID,c.Course,sc.Score,c.Property,c.credit,c.intro from Course as c,Stu_Course as sc where c.Course_ID = sc.Course_ID and c.Course_year_term = {$_POST['Course_year_term']} and sc.Stu_ID = {$_POST['Account']}";
require_once $_SERVER['DOCUMENT_ROOT'] . '/school' . '/model/pod.php';
$pod = new POD();
$pod->connect();
$result = $pod->query($sql1);
foreach ($result as $key => $value) {
$where = $result[$key]['Course_ID'];
$sql2 = "select Stu_ID from Stu_Course where Course_ID='{$where}' order by Score desc";
$ids = $pod->query($sql2);
foreach ($ids as $rank => $id) {
if ($id['Stu_ID'] == $_POST['Account']) {
$result[$key]['rank'] = $rank + 1;
break;
}
}
}
$pod->close();
return json_encode($result);
}