I can't run blog example, can anybody help me?

On May 27, 11:54 pm, leon <[email protected]> wrote:
> Thanks a lot for your help,
> I try this code
> $this->Post->id = $id;
> $this->set('post', $this->Post->read());
> and
> $this->set('posts', $this->Post->findById(1));
>
> but they both generate this SQL string
> SELECT Post.id, Post.title, Post.body, Post.created, Post.modified
> FROM posts AS Post   WHERE Post.id = '1'   FETCH FIRST 1 ROWS ONLY
>
> In CookBook chapter3.7.3.7 said: URL:http://book.cakephp.org/view/74/
> Complex-Find-Conditions
> Note:CakePHPwill quote the numeric values depending on the field
> type in your DB.
>
> So, I have not solved my problem yet,  Anybody know the answer ,please
> help me. I really appreciate that.
>
> On 5月27日, 下午6时36分, "Dr. Loboto" <[email protected]> wrote:
>
>
>
> > I think it's because you pass string '1', not integer 1 to find. Add
> > ticket athttp://cakephp.lighthouseapp.com/projects/42648-cakephp
>
> > On May 26, 3:22 pm, leon <[email protected]> wrote:
>
> > >CakePHPwill add two single quotes for integer in SQL string, but
> > > execute this kind of sql will cause error indb2.
>
> > > Wrong Sql string SELECT * FROM posts WHERE id = '1';
> > > Right Sql string SELECT * FROM posts WHERE id = 1;
>
> > > note:id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY
>
> > > anybody know this problem, pls help me ,Thanks in advance.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to