Subversion Repositories eFlore/Applications.cel

Rev

Rev 776 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 776 Rev 3473
Line 63... Line 63...
63
    /**
63
    /**
64
     * DB_mysql constructor.
64
     * DB_mysql constructor.
65
     *
65
     *
66
     * @access public
66
     * @access public
67
     */
67
     */
68
    function DB_mysql()
68
    function __construct()
69
    {
69
    {
70
        $this->DB_common();
70
        parent::__construct();
71
        $this->phptype = 'mysql';
71
        $this->phptype = 'mysql';
72
        $this->dbsyntax = 'mysql';
72
        $this->dbsyntax = 'mysql';
73
        $this->features = array(
73
        $this->features = array(
74
            'prepare' => false,
74
            'prepare' => false,
75
            'pconnect' => true,
75
            'pconnect' => true,