本文整理汇总了PHP中dbconnection::doQuery方法的典型用法代码示例。如果您正苦于以下问题:PHP dbconnection::doQuery方法的具体用法?PHP dbconnection::doQuery怎么用?PHP dbconnection::doQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dbconnection
的用法示例。
在下文中一共展示了dbconnection::doQuery方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getLike
public static function getLike($id)
{
$connection = new dbconnection();
$sql = "select count(*) from jabaianb.vote where tweet='" . $id . "'";
$res = $connection->doQuery($sql);
return $res === false ? false : $res;
}
示例2: getUserByLoginAndPass
public static function getUserByLoginAndPass($login, $pass)
{
$connection = new dbconnection();
$sql = "select id from jabaianb.utilisateur where identifiant='" . $login . "' and pass='" . sha1($pass) . "'";
$res = $connection->doQuery($sql);
return $res === false ? false : $res;
}
示例3: getCountLastTweets
public static function getCountLastTweets($startDate)
{
$connection = new dbconnection();
$sql = "SELECT COUNT(*) FROM jabaianb.tweet T\n\t\t INNER JOIN jabaianb.post P ON (T.post = P.id)\n\t\t WHERE P.date > '" . $startDate . "'";
$res = $connection->doQuery($sql);
if ($res === false) {
return null;
}
return $res[0]["count"];
}
示例4: getCountLikesById
public static function getCountLikesById($tweetId)
{
$connection = new dbconnection();
$sql = "SELECT COUNT(*) FROM jabaianb.vote WHERE message = " . $tweetId;
$res = $connection->doQuery($sql);
if ($res === false) {
return 0;
}
return $res[0]["count"];
}