Exemplo n.º 1
0
Arquivo: FQL.php Projeto: salebab/fdo
 /**
  * Prepare this FQL
  *
  * @return FDOStatement
  */
 function prepare()
 {
     $query = "SELECT " . implode(",", $this->select) . " " . "FROM " . $this->from . " " . "WHERE " . implode(" AND ", $this->where) . " ";
     if ($this->orderBy) {
         $query .= "ORDER BY " . $this->orderBy . " ";
     }
     if ($this->limit) {
         $query .= "LIMIT " . $this->limit . " ";
     }
     $stmt = $this->fdo->prepare($query);
     if (!empty($this->params)) {
         foreach ($this->params as $parameter => $value) {
             $stmt->bindValue($parameter, $value, $this->types[$parameter]);
         }
     }
     $this->logger->debug("FQL: " . $stmt->getQueryString());
     return $stmt;
 }
Exemplo n.º 2
0
<?php

ini_set("display_errors", 1);
error_reporting(E_ALL);
include_once "../vendor/autoload.php";
use fdo\FDO;
$fdo = new FDO();
$fql = "SELECT uid, name, sex FROM user WHERE uid = :uid";
$stmt = $fdo->prepare($fql);
$stmt->bindValue(":uid", 4, FDO::PARAM_INT);
$stmt->execute();
$result = $stmt->fetch(FDO::FETCH_OBJ);
var_dump($result);
Exemplo n.º 3
0
<?php

ini_set("display_errors", 1);
error_reporting(E_ALL);
header('Content-type: text/plain; charset=utf-8');
include_once "../vendor/autoload.php";
use fdo\FDO;
$access_token = "";
$fdo = new FDO($access_token, array(FDO::ATTR_BIGINT_PARSE => FDO::BIGINT_PARSE_AS_STRING));
$fql = "SELECT friend_count FROM user WHERE uid = me()";
echo "Count friends: " . $fdo->query($fql)->fetchColumn();
echo PHP_EOL;
$fql = "SELECT uid, name FROM user WHERE uid = :me OR uid IN (SELECT uid2 FROM friend WHERE uid1 = :me) ORDER BY name";
$stmt = $fdo->prepare($fql);
$stmt->bindValue(":me", "me()", FDO::PARAM_FUNC);
$stmt->execute();
echo "Friends:" . PHP_EOL;
echo str_pad("num", 4, " ", STR_PAD_LEFT) . " " . str_pad("uid", 22) . "name" . PHP_EOL;
$i = 0;
while ($friend = $stmt->fetch(FDO::FETCH_OBJ)) {
    echo str_pad(++$i, 4, " ", STR_PAD_LEFT) . " " . str_pad($friend->uid, 22) . $friend->name . PHP_EOL;
}
$stmt->debugDumpParams();