Wednesday, May 26, 2010

cakephp and db2

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: