Welcome Guest, Not a member yet? Register   Sign In
We challenge you to find a framework that has better performance than CodeIgniter.
#32

[eluser]Evollution[/eluser]
[quote author="Twisted1919" date="1293320032"]
6) A true Active Record class (CI's AR is actually a query builder not Active Record perse)
[/quote]

CI:$query = $this->db->get('table_name', 10, 20);

YII:

$connection=Yii::app()->db;
$sql = 'SELECT * FROM tbl_mytable LIMIT 10,20';
$command=$connection->createCommand($sql);
$rows=$command->queryAll();

--- i dont understand how you can like this AR .. is much hard to understand how it works + i dont see any advantage


Messages In This Thread
We challenge you to find a framework that has better performance than CodeIgniter. - by El Forum - 12-28-2010, 02:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB