codeigniter DB Forge、Code Igniter和动态数据库选择

h79rfbju  于 2022-12-16  发布在  其他
关注(0)|答案(2)|浏览(123)

我想动态地从一个数据库切换到另一个数据库,其名称是由用户动态给定的。
下面是我的代码中一些有意义的片段:

//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”中创建的!尽管加载的数据库是第二个。我该如何解决这个问题?

编辑#1

显然,$this->newDb->database=$database;不是持久的,如果连接关闭,然后重新打开,$this->newDb->database将具有数据库配置文件中最初给定的值,但这并不能解释为什么我会得到这些结果,因为我没有关闭连接。
如果我把这个添加到配置文件中:$db['newbase']['database'] = '';,然后我得到一个#1046错误:没有选择数据库。这证实了dbforge没有使用$this->newDb->database,它更喜欢使用硬编码值。

ttcibm8c

ttcibm8c1#

对于那些对答案感兴趣的人,这里有。
诀窍很简单:因为我不需要同时打开我的2个数据库,所以我只是使用了$this,就好像我在处理默认的数据库一样。让我们假设在配置文件中,我有第二个名为'newbase'的组,它有一个空的'database'字段。
用户在设置过程中提供此名称。
因此,一旦创建了数据库并关闭了连接:

$this->load->database('newbase', True);     
$this->db->database = '$database';

使用$this->db->database来了解正在处理的数据库。
然后如上所述声明$linkfields,并简单地调用dbforge类:

$this->load->dbforge();
$this->dbforge->add_field($linkfields);
$this->dbforge->add_key('table_id', TRUE);  
$this->dbforge->create_table('Link');
krcsximq

krcsximq2#

这就是你需要的:

//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'并像这样使用它:

//model.php

$newbase = $this->load->dbforge($this->load->database('newbase', TRUE), TRUE);
$newbase->add_field($linkfields);
$newbase->add_key('table_id', TRUE);  
$newbase->create_table('Link');

相关问题