If I use PDO and use FETCH_INTO like
...
$query->setFetchMode(PDO::FETCH_INTO, $this);
$query->execute();
I have a little problem. PHP variables are camelCase, but MySQL column names are with underscores. So I have creationDate vs creation_date.
Should I rename one side of equation to match the other one or do some 1:1 "mapping" via __set magic method (with switch command)?