I'm discovering FlourishLib and I was looking at their fDatabase.php code to see how they handle sql queries, and I was really surprised to see that when you use MySQL, they disable prepared queries
$this->connection->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, 1);
(line 599)
Why did they do this?
I'm used to PDO.prepare & PDOStatement.execute, and I wonder why this choice.