Possible Duplicate:
Is is possible to set a default PDO fetch mode?
I have searched the internet and this site and could not find an solution.
Is there a way to apply $this->query->setFetchMode(PDO::FETCH_ASSOC);
globally for all PDO queries? I find myself repeating the line over and over again.
I have tried applying it to the initial PDO
connection: $this->connection->setFetchMode()
but that throws an exception.