Where born the wordpress database class
As wordpress user/coder i know something about how it has been coded and about his loop.
Many times we found something like this:
$wpdb->get_row
it is an instance of the wpdb class to execute a query to database.
The WordPress DB Class is coded inside the wordpress file: wp-includes/wp-db.php.
It has not been coded from scratch, but born from a class named ezSQL and written by Justin Vincent.
while the direct address URL to the ezSQL class file is in this moment:
http://www.woyano.com/view/213/Download-ezSQL-Database-Class-204213-ez_sql_204
Tags: ezSQL, php database class, wordpress, wpdb

