未找到梨类DB类

时间:2010-12-19 15:11:35

标签: php mysql ubuntu pear database-abstraction

我创建了一个名为Database.php的类,用于使用Pear Db类与MySql数据库进行交互。

database.php中

<?php 
require_once('DB.php');
require_once('cException.php');

class DataBase
{

    private $dsn = 'mysql://root:xxxxxx@localhost/avatar';
    private $conn;


    //Constructor
    function __construct() 
    {
        global $conn;
        $this->conn = DB::connect($dsn);
        if(DB::isError($conn))
        {
            throw new DatabaseConnectionException();
        }
    }

    //destructor
    function __destruct() 
    {
       $this->conn->disconnect();
    }

    public function select($query)
    {
        $conn->setFetchMode(DB_FETCHMODE_ASSOC);
        $result = & $conn->query($query);

        if(DB::isError($result))
        {
            return new SelectCommandException($result->getMessage());
        }

        return $result;
    }

    static public function instance()
    {
        static $objDB;

        if(! isset($objDB))
        {
            $objDB = new DataBase();
        }

        return $objDB;
    }
?>

我从示例文件test.php

调用此类

test.php的

<?php

ini_set('display_errors', 1);
ini_set('log_errors', 1);
ini_set('error_log', dirname(__FILE__) . '/error_log.txt');
error_reporting(E_ALL);


    require_once 'Database.php';

    try 
    {
        $db = DataBase::instance();
    }
    catch (DatabaseConnectionException $ex1)
    {
        echo $ex1->toString();
    }

    try 
    {
        $sql = "Select * from register";
        $result = $db->select($sql);
        var_dump($result);
    }
    catch (SelectCommandException $ex2)
    {
        echo $ex2->toString();
    }
?>

当我运行test.php时出现以下错误

  

警告:   require_once(/usr/share/pear/DB.php):   无法打开流:没有这样的文件或   目录   /var/www/Avatar/Database.php在第2行   致命错误:require_once():失败   需要开放   '/usr/share/pear/DB.php'   (include_path中= ':在/ usr /共享/ PHP的:在/ usr /共享/梨')   在/var/www/Avatar/Database.php上   第2行

我不知道为什么会收到此错误。在phpinfo()中,它显示include_path .:/usr/share/php:/usr/share/pear .:/usr/share/php:/usr/share/pear

我正在使用php5,我甚至尝试安装php-pear包,但我仍然遇到同样的错误。 我不明白这里有什么问题。有人可以指出我正确的方向。

注意:我没有使用sudo apt-get install php5安装php5。我使用Keryx应用程序下载了php5软件包。

1 个答案:

答案 0 :(得分:4)

看起来你没有安装DB包,尝试在命令提示符下执行

pear list

如果没有安装DB的软件包,可以使用

进行安装
pear install DB

example from documentation