Ejemplo n.º 1
0
 /**
  * @param null $from
  * @return SelectInterface
  */
 public function select($from = null)
 {
     $select = new Statement();
     $select->bindDatabase($this)->select();
     if (null !== $from) {
         $select->from($from);
     }
     return $select;
 }