Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Cyberlot's Blog:
Extending PDO and PDO FETCH_ASSOC
Dec 19, 2005 @ 12:53:18

On Cyberlot's blog today, he has this new post where he looks at extending the already powerful PDO library to fetch information and not have to use setFetchMode with every query.

One thing with pdo, every time you do a statement you have to tell if what mod to use for fetch. You can do this either directly by passing a value like PDO::FETCH_ASSOC to your fetch statements or to setFetchMode for each query result.

Now if your like me and use the same exact mode 99% of the time this can get a little annoying.

Well ran into a project where I would need to get the status of a mysql table often, so wanted to make some reusable code for this, realize this also might be a good time to tackle the whole pdo issue, so here you go a solid example of how to extend PDO to stop having to use setFetchMode every query or extend it some more to change your needs.

The code itself is pretty simple, and makes fetching the results a bit less tedius of a task...

tagged: extening PDO fetch_assoc setFetchMode extening PDO fetch_assoc setFetchMode

Link:


Trending Topics: