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: CakePHP will 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" <drlob...@gmail.com> 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 <luyang.l...@gmail.com> wrote:
>
>
>
> > CakePHP will add two single quotes for integer in SQL string, but
> > execute this kind of sql will cause error in db2.
>
> > 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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment