Commit b2a2f0aa authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #36 from laszlokorte/output_fix

Writing the result into the output object instead of just echoing it out.
parents 2434d95a b011ef6c
...@@ -78,6 +78,10 @@ EOT ...@@ -78,6 +78,10 @@ EOT
$resultSet = $conn->executeUpdate($sql); $resultSet = $conn->executeUpdate($sql);
} }
ob_start();
\Doctrine\Common\Util\Debug::dump($resultSet, (int) $depth); \Doctrine\Common\Util\Debug::dump($resultSet, (int) $depth);
$output = ob_get_clean();
$output->write();
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment