From 0134ca4d6be32009c7fb7d40cfdbd31e19b970c3 Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Sun, 31 Aug 2008 14:31:08 +0000 Subject: fixed incorrect example SQL output example --- user_guide/database/active_record.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'user_guide/database/active_record.html') diff --git a/user_guide/database/active_record.html b/user_guide/database/active_record.html index 3a40dc2ce..04e81d8cc 100644 --- a/user_guide/database/active_record.html +++ b/user_guide/database/active_record.html @@ -228,7 +228,7 @@ $this->db->join('comments', 'comments.id = blogs.id', 'left');< $this->db->where('name', $name);
$this->db->where('title', $title);
$this->db->where('status', $status); -

// WHERE = name 'Joe' AND title = 'boss' AND status = 'active'
+

// WHERE name 'Joe' AND title = 'boss' AND status = 'active'
  • Custom key/value method: -- cgit v1.2.3-24-g4f1b