0
votes
1answer
137 views

PHP Fatal error: Call to undefined method DB_Error::getAll()

I'm very bored, I backup the site, and I try to re-publish correctly but I have one php error... PHP Fatal error: Call to undefined method DB_Error::getAll() check my code : //renvoi toutes ...
0
votes
0answers
66 views

PHP require DB.php fails , Snow Leopard

I am having problems with PEAR, in particular, I want to use DB.php, on my Mac, OS 10.6.8, php version 5.3.8. I followed the instructions on Snow Leopard - PHP 5.3.1 installed... but no PEAR? to ...
1
vote
0answers
58 views

PHP Pear library throws me error of “no DB selected”

I have a below code snippet in my code: $dsn = DB_TYPE . '://' . DB_USER . ':' . DB_PASS . '@' . DB_HOST . '/' . DB_NAME; //error_reporting(E_ALL); $db = DB::connect( $dsn, 'true' ); ...
0
votes
1answer
228 views

Error connecting to dabase

I would like to use PEAR for developing a website and i have made a class to connect and disconnect from database, but it does not seems to work. I ask you where am i wrong regarind the code below? ...
2
votes
1answer
189 views

Using PEAR to handle DB. DB Errors being displayed to users. How to stop?

I've inherited a site that uses PEAR to handle all DB calls. This is an example of how it handles a query: $result = $conn->query($sql); if(PEAR::isError($result)) { ...
5
votes
3answers
1k views

OpenX upgrade results in plugin errors

After upgrading to OpenX 2.8.8, I'm getting these errors: PEAR Error DB_DataObject Error: autoload:Could not find class DataObjects_Ext_market_assoc_data using class_location value PEAR Error ...
0
votes
1answer
37 views

Who user only DB class from PERA?

I want to use only PEAR DB class, I try follow: $pearPfad ="PEAR_DB-1.7.14/DB-1.7.14/DB.php"; error_reporting(E_ALL); require_once($pearPfad); $DB_dbType ="mysql"; $DB_user = "myuser"; $DB_pass = ...
0
votes
1answer
183 views

PHP PEAR GoogleMapsAPI DB Error: not found

I am running a LAMP server for my development environment on Ubuntu 11.10. I installed pear's DB (I know its deprecated, but this Google maps API class requires it)... I have installed it, but now ...
2
votes
1answer
2k views

PHP| PEAR:MDB2 vs PDO vs Native-PHP (Raw)

After doing a sort of a research through out the Internet(And here at Stackoverflow) - I'm still struggling to decide which method is best for me to learn/use and dig more when programming in PHP. I ...
-1
votes
1answer
779 views

Use pear DB class into custom class

i'm getting an error and i think is an access problem to the class, but i'm not sure and don't know how to solve. I create a DSN: require_once ('DB.php'); $dsn = array( 'phptype' => 'mysql', ...
0
votes
1answer
435 views

Where can I find a list of PEAR DB error codes?

I'm trying to establish a connection to a mysql database using PEAR DB. It's throwing the following error at me: DB_Error Object ( [error_message_prefix] => [mode] => 1 [level] => 1024 [code] ...
0
votes
1answer
149 views

php pear db disconnect

do i need manually call disconnect() ? for example <?php // Create a valid DB object named $db // at the beginning of your program... require_once 'DB.php'; $db =& ...
0
votes
2answers
38 views

Can I call DB:connect without affecting the currently active DB?

I'm trying to merge to php code bases which each use a different DB. Can I call DB::connect which changing which DB is considered active? Or can I save the active DB and restore it after calling ...
0
votes
1answer
298 views

PEAR DataSource driver error

Situation: I am creating a database user interface for a client's website. I know I could simply use phpMyAdmin, but it is too complex for my client. Instead, I though I could give some of the PEAR ...
0
votes
5answers
1k views

Which should I use, pear MDB2 or pear DB_DataObject when I use MySQL when I can not use PDO?

Almost all of free web hosting server, you can not use PDO + MySQL. They lack PDO drivers. So I am considering to select pear MDB2, or DB_DataObject. Which do you reccomend to me? Give me your ...
7
votes
14answers
2k views

What is the best way to access a database from PHP?

When accessing a MySQL-database from PHP there seems to be several ways: Sprinkle the code with raw SQL-statements Use the VO-pattern from Java (e.g. DB_DataObjects from PEAR) DIY and ...
1
vote
3answers
601 views

What design pattern is PEAR DB_DataObject implementing?

DB_DataObject does not appear to be ActiveRecord because you do not necessarily store business logic in the "table" classes. It seems more like Table Data Gateway or Row Data Gateway, but I really ...