I'm using Zend Framework with Doctrine and the bridge ZFDoctrine. I wrote a method in a DoctrineProvider, meaning that I can execute a command like this in CLI :
zf.sh mymethod doctrine
In this method, I'm executing a huge raw SQL query :
$content = file_get_contents($sql);
$statement = $connection->prepare($content);
$statement->execute();
$this->_print(
"Successfully generated indicators with $filename.",
array('color' => 'green')
);
This is working well, except that the Success message is printed BEFORE the end of the SQL query execution. The CLI holds the hand, until the SQL query ends.
How can I do to NOT print the message until the query ends ?
Thanks