无法连接到数据库 codeIgniter

can't connect to DB codeIgniter

我正在尝试自学 CodeIgniter。但是当我按照本教程的具体说明进行操作时 http://www.codeigniter.com/user_guide/tutorial/news_section.html

这是我的数据库配置

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => '',
    'database' => 'test',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => TRUE,
    'db_debug' => TRUE,
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

我收到以下错误:

A PHP Error was encountered

Severity: Notice

Message: Undefined property: CI_Loader::$db

Filename: pages/about.php

Line Number: 9

Backtrace:

File: /Applications/MAMP/htdocs/CodeIgniter/application/views/pages/about.php
Line: 9
Function: _error_handler

File: /Applications/MAMP/htdocs/CodeIgniter/application/controllers/Pages.php
Line: 18
Function: view

File: /Applications/MAMP/htdocs/CodeIgniter/index.php
Line: 292
Function: require_once


Fatal error: Call to a member function query() on null in /Applications/MAMP/htdocs/CodeIgniter/application/views/pages/about.php on line 9
A PHP Error was encountered

Severity: Error

Message: Call to a member function query() on null

Filename: pages/about.php

Line Number: 9

Backtrace:

我想是因为你没有自动加载数据库library。

路径:application/config/autoload.php

$autoload['libraries'] = array('database');

为什么显示 Message: Undefined property: CI_Loader::$db

您可以尝试在控制器或视图中加载您的模型,建议在控制器中加载...

$this->load->model('News_model','News',true);

然后尝试使用以下方式插入、更新或删除:

$this->News->insert_function($param1,$param2);

class News_model extends CI_Model {

    public function insert_function($param1,$param2)
    {
            $this->db->query("insert into table ('col1','col2') values ('$param1','$param2')");
            //other codes here....
    }
}

希望对您有所帮助..