function()
{
if ($this->_fancy) {
$this->stopFancyStuff();
$switch_to_fancy = true;
}
$result = $this->pdo->query(...\func_get_args());
if (!empty($switch_to_fancy)) {
$this->startFancyStuff();
}
return $result;
}