In which function/class is the dbprefix added to the table name in Codeigniter Active Record requests?

I need to dynamically change the prefix based on the table name but cannot find the function which prepends the prefix in the first place.

DB_active_rec.php has a dbprefix() function but this appears to have no effect.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

It depends on the driver you're using, and it's probably in a few places in that driver too.

Try the DB_active_rec.php file's set_dbprefix() method to override it. This will get very messy (keeping track of which table you're querying), and I would recommend changing your schema instead.

link|improve this answer
feedback

In application/config/database.php you can set a prefix variable. Anytime you use Active Records, the prefix is added.

link|improve this answer
feedback

A line taken from the codeigniter site

$this->db->set_dbprefix('newprefix');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.