public function query($fetchMode = null,
$bind =
[]) { if (!
empty($bind)) { $this->
bind($bind);
} $stmt =
$this->_adapter->
query($this);
if ($fetchMode == null
) { $fetchMode =
$this->_adapter->
getFetchMode();
} $stmt->
setFetchMode($fetchMode);
return $stmt;
} /**
* Converts this object to an SQL SELECT string.
*
* @return string|null This object as a SELECT string. (or null if a string cannot be produced.)
*/