Click to See Complete Forum and Search --> : mySQL wrapper class


procoder
10-28-2003, 01:46 AM
This is a class I wrote a bit while ago, works great :)

http://pavel.ath.cx:81/~paul/class_mysql.phps

Debug shows all queries you used, how many and how long it took, errors are also in details.

Any comments?

Moonglobe
10-28-2003, 08:34 PM
function select_db($database) {

if(empty($database)) $database = $this->db_databse;

should be:
function select_db($database) {

if(empty($database)) $database = $this->db_database;

procoder
10-28-2003, 11:25 PM
Thx moon, nice catch :)