0

ユーザーが動的に名前を付けたデータベースから別のデータベースに動的に切り替えたいと思います。

ここに私のコードのいくつかの重要な断片があります:

//database.php

$active_group = 'default';
$query_builder = TRUE;

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => '',
    'database' => 'firstbase',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    '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
);

$db['newbase'] = $db['default'];

ご覧のとおり、「newbase」はデフォルト設定の単純なコピーです

//Install_model Model
    echo "<BR>Active db :".$this->db->database;
    $this->createDB($database);
    $this->db->close();

    //now $database is created

    //load the 'newbase' group and assign it to $this->newDb
    $this->newDb = $this->load->database('newbase', TRUE);

    //this will output 'firstbase'
    echo "<BR>so far, the active db is :".$this->newDb->database;
    $this->newDb->database=$database;
    //now this will output the $database string
    echo "<BR>and now the active db is :".$this->newDb->database;

さて、この新しいデータベースで dbforge を使用したいと思います。

$linkfields = array(
            'table_id' => array(
                    'type' => 'VARCHAR',
                    'constraint' => '15'
            ),
            'something' => array(
                    'type' => 'VARCHAR',
                    'constraint' => '15',
                    'unique' => TRUE,
            ),
        );

        //according to the manual, we "give" our new DB to dbforge
        $this->myforge = $this->load->dbforge($this->newDb, TRUE);
        $this->myforge->add_field($linkfields);
        $this->myforge->add_key('table_id', TRUE);
        $this->myforge->create_table('Link');

これは機能しますが...テーブルは「firstbase」で作成されます! ロードされるデータベースは 2 番目のデータベースですが。どうすればこれを解決できますか?

編集#1

どうやら、$this->newDb->database=$database;永続的ではありません。接続が閉じられてから再度開かれ$this->newDb->databaseた場合、データベース構成ファイルで最初に指定された値を持ちます。ただし、接続を閉じていないため、これらの結果が得られる理由は説明できません。

これを構成ファイルに追加すると$db['newbase']['database'] = '';、#1046 エラーが発生します: データベースが選択されていません。$this->newDb->databaseこれにより、が dbforge によって使用されないという事実が確認されます。dbforge は代わりにハードコードされた値を使用することを好みます。

4

1 に答える 1