Example #1
0
 /**
  * @param bool $returnThis
  * @return mixed
  */
 public function execute($returnThis = true)
 {
     $qArr = $this->query->build($this->grammar);
     $this->statement = $this->pdo->prepare($qArr[0]);
     $status = $this->statement->execute($qArr[1]);
     return $returnThis ? $this : $status;
 }