drbmhd9583 2017-10-05 11:15
浏览 46
已采纳

在codeigniter 3中切换数据库

I am trying to use / change the database for different organizations / users. In master database, I have db_name for different organizations, I am using the following code to store the db_name in session.

$condition = "subdomain =" . "'" . $data['subdomain'] . "' AND " . "status =1";

$this->db->select('id, db_name');
$this->db->from('sublogin');
$this->db->where($condition);
$this->db->limit(1);

$db_name = $this->db->get()->row()->db_name;

// SET db_name for session
$this->session->set_userdata('db_name', $db_name);

in another model, switch the database

$db_name = $this->session->userdata('db_name');
$this->db->db_select($db_name); 

Its working on localhost but not on my live server, it gives error:

A Database Error Occurred Error Number: 1146 Table 'db694230824.users' doesn't exist

I tried to echo the current database and it says the database is not changed.

echo $this->db->database;
die(); 
  • 写回答

1条回答 默认 最新

  • dousuo2812 2017-10-05 18:24
    关注

    1 solution.

    You can work with multiple databases like this:

    $this->db = $this->load->database('default', TRUE);
    $this->anotherDb = $this->load->database('anotherDb ', TRUE);
    

    Or if you assign the codeigniter super-object:

    public function __construct($params) {
    
       $this->CI = & get_instance();
       $this->CI->db = $this->CI->load->database('default', TRUE);
       $this->CI->anotherDb = $this->CI->load->database('anotherDb', TRUE);
    }
    

    2 solution

    It was working earlier, not 100% sure if it still works, but looks like this bug still exist in CI. Just add 1 line of code at simple_query function in /system/database/DB_driver.php file:

    public function simple_query($sql)
    {
        if ( ! $this->conn_id)
        {
            $this->initialize();
        }
    
        $this->db_select(); // add this
        return $this->_execute($sql);
    }
    

    It should allow you use other databases in models like this:

    $this->anotherDb = $this->load->database('anotherDb', true);
    

    Don't forget to add other's DBs CONNECTIVITY SETTINGS in /application/config/database.php file in similar way as you have with your default db:

    $db['default'] = array(
        'dsn'   => '',
        'hostname' => 'localhost',
        ...
    );
    
    $db['anotherDb'] = array(
        'dsn'   => '',
        'hostname' => 'localhost',
        ...
    );
    

    CodeIgniter » Docs » Database Reference » Connecting to your Database

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵