getRaw() public method

Returns the raw SQL query statement.
public getRaw ( ) : String
return String
Example #1
0
 /**
  * {@inheritdoc}
  */
 public function execute(Query $query, $fetchPlan = null)
 {
     if ($query->getCommand() instanceof Select) {
         return $this->query($query->getRaw(), -1, $fetchPlan);
     }
     return $this->command($query->getRaw());
 }