是否可以在CI和DB之间添加层

时间:2013-10-21 10:30:05

标签: database codeigniter model database-abstraction

您好我想在CI和DB之间添加另一个层..我想编写像

这样的函数
$user = new User_Model()
$user->username="xxx";
$entityManager->saveOrUpdateObject($user);

$user = $entityManager->loadObject(array('table' => 'user','id' => 5));

它们正在使用内置在codeigniter中的本机数据库函数..我是通过基本模型类来做的,但我想要另外一个类来做它,因为我想使用我的IDE的代码完成功能..

P.S我从http://net.tutsplus.com/tutorials/php/6-codeigniter-hacks-for-the-masters/

激活#1 hack

0 个答案:

没有答案