Welcome Guest, Not a member yet? Register   Sign In
Problems with Active Record
#21

[eluser]TheFuzzy0ne[/eluser]
Check out the active record source. Ot my knowledge, it just uses regular expressions to escape fields (which sometimes it gets wrong so we have pass in FALSE as the second paramter). The active record class doesn't "need" to know about aliases, as it's the database that figures it out when the query is executed.

For example, there should be nothing stopping you doing something like this:
Code:
$this->db->order_by('something');
$this->db->limit(10);
$this->db->from('some_table');
$this->db->select('field1, field2, field3');

The statement is declared backwards (which you wouldn't get away with using pure SQL). The query is only compiled when you call $this->db->get(). As I said, check out the source and you'll see what I mean. Smile


Messages In This Thread
Problems with Active Record - by El Forum - 03-11-2009, 08:41 PM
Problems with Active Record - by El Forum - 03-11-2009, 08:44 PM
Problems with Active Record - by El Forum - 03-11-2009, 08:49 PM
Problems with Active Record - by El Forum - 03-11-2009, 08:57 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:00 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:05 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:07 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:10 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:11 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:14 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:23 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:25 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:39 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:45 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:53 PM
Problems with Active Record - by El Forum - 03-11-2009, 09:56 PM
Problems with Active Record - by El Forum - 03-11-2009, 10:01 PM
Problems with Active Record - by El Forum - 03-11-2009, 10:07 PM
Problems with Active Record - by El Forum - 03-11-2009, 10:13 PM
Problems with Active Record - by El Forum - 03-11-2009, 11:53 PM
Problems with Active Record - by El Forum - 03-12-2009, 12:03 AM
Problems with Active Record - by El Forum - 03-12-2009, 12:07 AM
Problems with Active Record - by El Forum - 03-12-2009, 12:09 AM
Problems with Active Record - by El Forum - 03-12-2009, 06:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB