ci高级用法篇之连接多个数据库

在我们的项目中有时可能需要连接不止一个数据库,在ci中如何实现呢?

我们在本地新建了两个数据库,如下截图所示:


修改配置文件database.php文件为如下格式(读者根据自己数据库的情况修改相应参数的配置):

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
| For complete instructions please consult the 'Database Connection'
| page of the User Guide.
|
| -------------------------------------------------------------------
| EXPLANATION OF VARIABLES
| -------------------------------------------------------------------
|
|	['dsn']      The full DSN string describe a connection to the database.
|	['hostname'] The hostname of your database server.
|	['username'] The username used to connect to the database
|	['password'] The password used to connect to the database
|	['database'] The name of the database you want to connect to
|	['dbdriver'] The database driver. e.g.: mysqli.
|			Currently supported:
|				 cubrid, ibase, mssql, mysql, mysqli, oci8,
|				 odbc, pdo, postgre, sqlite, sqlite3, sqlsrv
|	['dbprefix'] You can add an optional prefix, which will be added
|				 to the table name when using the  Query Builder class
|	['pconnect'] TRUE/FALSE - Whether to use a persistent connection
|	['db_debug'] TRUE/FALSE - Whether database errors should be displayed.
|	['cache_on'] TRUE/FALSE - Enables/disables query caching
|	['cachedir'] The path to the folder where cache files should be stored
|	['char_set'] The character set used in communicating with the database
|	['dbcollat'] The character collation used in communicating with the database
|				 NOTE: For MySQL and MySQLi databases, this setting is only used
| 				 as a backup if your server is running PHP < 5.2.3 or MySQL < 5.0.7
|				 (and in table creation queries made with DB Forge).
| 				 There is an incompatibility in PHP with mysql_real_escape_string() which
| 				 can make your site vulnerable to SQL injection if you are using a
| 				 multi-byte character set and are running versions lower than these.
| 				 Sites using Latin-1 or UTF-8 database character set and collation are unaffected.
|	['swap_pre'] A default table prefix that should be swapped with the dbprefix
|	['encrypt']  Whether or not to use an encrypted connection.
|	['compress'] Whether or not to use client compression (MySQL only)
|	['stricton'] TRUE/FALSE - forces 'Strict Mode' connections
|							- good for ensuring strict SQL while developing
|	['failover'] array - A array with 0 or more data for connections if the main should fail.
|	['save_queries'] TRUE/FALSE - Whether to "save" all executed queries.
| 				NOTE: Disabling this will also effectively disable both
| 				$this->db->last_query() and profiling of DB queries.
| 				When you run a query, with this setting set to TRUE (default),
| 				CodeIgniter will store the SQL statement for debugging purposes.
| 				However, this may cause high memory usage, especially if you run
| 				a lot of SQL queries ... disable this to avoid that problem.
|
| The $active_group variable lets you choose which connection group to
| make active.  By default there is only one group (the 'default' group).
|
| The $query_builder variables lets you determine whether or not to load
| the query builder class.
*/

$active_group = 'test';//默认连接test数据库
$active_record = TRUE;//是否开启active record

$db['test'] = array(
	'dsn'	=> '',
	'hostname' => 'localhost',
	'username' => 'root',
	'password' => '',
	'database' => 'test',
	'dbdriver' => 'mysqli',
	'dbprefix' => '',
	'pconnect' => FALSE,
	'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
);
//test2数据库相关配置
$db['test2'] = array(
	'dsn'	=> '',
	'hostname' => 'localhost',
	'username' => 'root',
	'password' => '',
	'database' => 'test2',
	'dbdriver' => 'mysqli',
	'dbprefix' => '',
	'pconnect' => FALSE,
	'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
);

在applicaton/model目录下创建两个文件:score.php

<?php
class Score extends CI_Model {

    private $tableName = 'score';

    function __construct()
    {
        parent::__construct();
    }

    public function getAllScores(){
        return $this->db->get($this->tableName);
    }
}
和students.php

<?php
class Students extends CI_Model {

    private $tableName = 'students';

    function __construct()
    {
        parent::__construct();
    }

    public function getAllStudents(){
        return $this->db->get($this->tableName);
    }
}
修改welcome控制器:

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Welcome extends ci_Controller {

	/**
	 * Index Page for this controller.
	 *
	 * Maps to the following URL
	 * 		http://example.com/index.php/welcome
	 *	- or -
	 * 		http://example.com/index.php/welcome/index
	 *	- or -
	 * Since this controller is set as the default controller in
	 * config/routes.php, it's displayed at http://example.com/
	 *
	 * So any other public methods not prefixed with an underscore will
	 * map to /index.php/welcome/<method_name>
	 * @see http://codeigniter.com/user_guide/general/urls.html
	 */
	public function __construct(){
		parent::__construct();
		$this->load->model('students');
		$this->load->model('score');
	}

	public function index()
	{
		var_dump($this->students->getAllStudents()->result());
		var_dump($this->score->getAllScores()->result());
		die('测试结束');
	}
}

访问http://localhost/ci2/地址,浏览器输出如下截图所示:

可以看到ci没有找到score表,我们需要在score.php文件中用

$this->db = $this->load->database('test2', TRUE);
显示指明score所在的数据库:

<?php
class Score extends CI_Model {

    private $tableName = 'score';
    private $db;

    function __construct()
    {
        parent::__construct();
        $this->db = $this->load->database('test2', TRUE);
    }

    public function getAllScores(){
        return $this->db->get($this->tableName);
    }
}

再次访问访问http://localhost/ci2/地址,输出结果如下截图所示:


  • 4
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在CodeIgniter框架中实现数据库部分数据加密方法,可以使用框架自带的加密类 `Encryption`。 以下是一个简单的实现示例: ```php class MY_Model extends CI_Model { protected $table_name = ''; protected $primary_key = ''; protected $encrypt_fields = array(); public function __construct() { parent::__construct(); $this->load->library('encryption'); } public function get($id) { $this->db->where($this->primary_key, $id); $query = $this->db->get($this->table_name); $row = $query->row_array(); foreach ($this->encrypt_fields as $field) { $row[$field] = $this->encryption->decrypt($row[$field]); } return $row; } public function insert($data) { foreach ($this->encrypt_fields as $field) { $data[$field] = $this->encryption->encrypt($data[$field]); } return $this->db->insert($this->table_name, $data); } public function update($id, $data) { foreach ($this->encrypt_fields as $field) { $data[$field] = $this->encryption->encrypt($data[$field]); } $this->db->where($this->primary_key, $id); return $this->db->update($this->table_name, $data); } } ``` 在这个示例中,我们创建了一个 `MY_Model` 类,它继承自 CodeIgniter 框架的 `CI_Model` 类。在构造函数中,我们加载了框架自带的加密类 `Encryption`。 我们定义了三个属性,分别为数据库表名 `$table_name`、主键名 `$primary_key`,以及需要加密的字段名数组 `$encrypt_fields`。 我们提供了三个方法,分别为 `get`、`insert`、`update`,用于获取、插入、更新数据。在 `get` 方法中,我们查询数据库并获取一行数据,然后遍历 `$encrypt_fields` 数组,对每个需要加密的字段调用 `encryption` 类的 `decrypt` 方法进行解密。在 `insert` 和 `update` 方法中,我们同样遍历 `$encrypt_fields` 数组,对每个需要加密的字段调用 `encryption` 类的 `encrypt` 方法进行加密。最后,我们调用框架自带的数据库操作方法 `insert` 和 `update` 进行插入和更新操作。 这样,我们就可以在 CodeIgniter 框架中方便地实现数据库部分数据加密了。当然,这只是一个简单的示例,实际应用中还需要考虑很多其他因素,例如密钥的管理、加密算法的选择等。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值