From 014b18f4f673dcd0d99fdbb0e71808f210633d9b Mon Sep 17 00:00:00 2001 From: airox Date: Sat, 8 Dec 2007 13:44:59 +0000 Subject: [PATCH] Small documentation issues, insert query which hadn't had a value, reference to an example above should be below Ticket: 656 --- manual/docs/en/component-overview.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/docs/en/component-overview.txt b/manual/docs/en/component-overview.txt index dee7e20f9..4c0df2044 100644 --- a/manual/docs/en/component-overview.txt +++ b/manual/docs/en/component-overview.txt @@ -214,7 +214,7 @@ $event->save(); The last line would execute sql (in sqlite): -INSERT INTO event (name, timepoint) VALUES (?, 'NOW()') +INSERT INTO event (name, timepoint) VALUES ('Rock festival', 'NOW()') +++ Getting record state @@ -510,7 +510,7 @@ foreach($users as $user) { } -The example above shows how to do this more efficiently by using the DQL API. +The example below shows how to do this more efficiently by using the DQL API. // load everything here