web-dev-qa-db-ja.com

Codeigniter-複数のデータベース接続

MySQLデータベース情報をマスターデータベースから取得し、そのデータベースに接続して、レコードを取得する必要があります。

つまり、1つのデータベースを保持して、別のデータベースをロードしたいということです。

Codeigniterで可能ですか?現在、私のモデルでは次のコード行を使用しています。

function connectDb($credential)
{

    $config['hostname'] = $credential['server'];
    $config['username'] = $credential['username'];
    $config['password'] = $credential['password'];
    $config['database'] = $credential['database'];
    $config['dbdriver'] = "mysql";
    $config['dbprefix'] = "";
    $config['pconnect'] = FALSE;
    $config['db_debug'] = TRUE;
    $config['cache_on'] = FALSE;
    $config['cachedir'] = "";
    $config['char_set'] = "utf8";
    $config['dbcollat'] = "utf8_general_ci";

    $DB2=$this->load->database($config);

    $DB2->db->select('first_name,last_name');
    $query = $DB2->db->get('person');
    print_r($query);

}

それが機能していない他の方法はありますか?

48
S.Sid

「application/config/database.php」で2番目のデータベース情報を提供する必要があります

通常、次のようにdefaultデータベースグループを設定します。

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "root";
$db['default']['password'] = "";
$db['default']['database'] = "database_name";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = FALSE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
$db['default']['swap_pre'] = "";
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

ログイン情報と設定は、$db['default']という名前の配列で提供されることに注意してください。

その後、新しい配列に別のデータベースを追加できます-「otherdb」と呼びましょう。

$db['otherdb']['hostname'] = "localhost";
$db['otherdb']['username'] = "root";
$db['otherdb']['password'] = "";
$db['otherdb']['database'] = "other_database_name";
$db['otherdb']['dbdriver'] = "mysql";
$db['otherdb']['dbprefix'] = "";
$db['otherdb']['pconnect'] = TRUE;
$db['otherdb']['db_debug'] = FALSE;
$db['otherdb']['cache_on'] = FALSE;
$db['otherdb']['cachedir'] = "";
$db['otherdb']['char_set'] = "utf8";
$db['otherdb']['dbcollat'] = "utf8_general_ci";
$db['otherdb']['swap_pre'] = "";
$db['otherdb']['autoinit'] = TRUE;
$db['otherdb']['stricton'] = FALSE;

ここで、実際に2番目のデータベースを使用するには、モデルで使用できる別の変数に接続を送信する必要があります。

function my_model_method()
{
  $otherdb = $this->load->database('otherdb', TRUE); // the TRUE paramater tells CI that you'd like to return the database object.

  $query = $otherdb->select('first_name, last_name')->get('person');
  var_dump($query);
}

それはそれを行う必要があります。複数のデータベースに接続するためのドキュメントはここにあります: http://codeigniter.com/user_guide/database/connecting.html

79
Repox

最適な方法は、異なるデータベースグループを使用することです。通常どおりmasterデータベース($ this-> db)を使い続けたい場合は、セカンダリデータベースのpersistent connexion設定オプションをオフにしてください。マスターデータベースのみが永続的な接続で動作するはずです:

マスターデータベース

$db['default']['hostname'] = "localhost";
$db['default']['username'] = "root";
$db['default']['password'] = "";
$db['default']['database'] = "database_name";
$db['default']['dbdriver'] = "mysql";
$db['default']['dbprefix'] = "";
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = FALSE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = "";
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";
$db['default']['swap_pre'] = "";
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

セカンダリデータベース(pconnectがfalseに設定されていることに注意してください)

$db['otherdb']['hostname'] = "localhost";
$db['otherdb']['username'] = "root";
$db['otherdb']['password'] = "";
$db['otherdb']['database'] = "other_database_name";
$db['otherdb']['dbdriver'] = "mysql";
$db['otherdb']['dbprefix'] = "";
$db['otherdb']['pconnect'] = FALSE;
$db['otherdb']['db_debug'] = FALSE;
$db['otherdb']['cache_on'] = FALSE;
$db['otherdb']['cachedir'] = "";
$db['otherdb']['char_set'] = "utf8";
$db['otherdb']['dbcollat'] = "utf8_general_ci";
$db['otherdb']['swap_pre'] = "";
$db['otherdb']['autoinit'] = TRUE;
$db['otherdb']['stricton'] = FALSE;

次に、通常どおりmasterデータベースを使用しながら、セカンダリデータベースをデータベースオブジェクトとして使用できます。

// use master dataabse
$users = $this->db->get('users');

// connect to secondary database
$otherdb = $this->load->database('otherdb', TRUE);
$stuff = $otherdb->get('struff');
$otherdb->insert_batch('users', $users->result_array());

// keep using master database as usual, for example insert stuff from other database
$this->db->insert_batch('stuff', $stuff->result_array());
16
Simmoniz

これを使って。

$dsn1 = 'mysql://user:password@localhost/db1';
$this->db1 = $this->load->database($dsn1, true);     

$dsn2 = 'mysql://user:password@localhost/db2';
$this->db2= $this->load->database($dsn2, true);     

$dsn3 = 'mysql://user:password@localhost/db3';
$this->db3= $this->load->database($dsn3, true);   

使用法

$this->db1 ->insert('tablename', $insert_array);
$this->db2->insert('tablename', $insert_array);
$this->db3->insert('tablename', $insert_array);
14
Rayiez

私にとってはうまくいきます...

これはデフォルトのデータベースです:

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

Database.phpファイルの下部に別のデータベースを追加します

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

Autoload.php構成ファイル内

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

デフォルトのデータベースは、データベースライブラリを自動ロードすることで正常に機能しますが、2番目のデータベースはモデルとコントローラーのコンストラクターを使用してロードおよび接続します...

<?php
    class Seconddb_model extends CI_Model {
        function __construct(){
            parent::__construct();
            //load our second db and put in $db2
            $this->db2 = $this->load->database('second', TRUE);
        }

        public function getsecondUsers(){
            $query = $this->db2->get('members');
            return $query->result(); 
        }

    }
?>
9
Mani

コードを見ながら、私が間違っているのは、2番目のデータベースをロードしようとしたときだけです。

$DB2=$this->load->database($config);

データベースオブジェクトを取得する場合は、2番目の引数で[〜#〜] true [〜#〜]を渡す必要があります。

Codeigniter User Guide から:

2番目のパラメーターをTRUE(ブール値)に設定すると、関数はデータベースオブジェクトを返します。

したがって、コードは次のようになります。

$DB2=$this->load->database($config, TRUE);

それはそれが動作するようになります。

6
Quetzy Garcia
If you need to connect to more than one database simultaneously you can do so as follows:

$DB1 = $this->load->database('group_one', TRUE);
$DB2 = $this->load->database('group_two', TRUE);

注:「group_one」および「group_two」という単語を、接続先の特定のグループ名に変更します(または、上記のように接続値を渡すことができます)。

2番目のパラメーターをTRUE(ブール値)に設定すると、関数はデータベースオブジェクトを返します。

詳細については、 https://www.codeigniter.com/userguide3/database/connecting.html にアクセスしてください。

0
Dhiraj Shrestha