Hello,
I am trying to access MySQL databse using PEAR. Doing everything "by the book", but get error:
"Fatal Error: call to underfined function: query() in /usr/share/pear/DB".
Here is the code:
$dbh = DB::connect('mysql://root:@/test');
$sth = $dbh->query('SELECT * from test'); <-- fails here
.
.
.
thanks,
Alex