I've seen something like this before, for some odd reason instead of
erroring before it submits the sql, it will try and use an array as the
value, and the first value of that array is an "L".
Do a pr before the saveField command and see what could possibly have a
string that starts with L
Also try running your save like this
$this->PdfPref->save(array('landscape'=> $this->data['PdfPref']
['landscape']));
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf
Of WhyNotSmile
Sent: Monday, March 22, 2010 4:51 AM
To: CakePHP
Subject: MySQL error on field update
I'm trying to update a record in the database, but I keep getting an
error saying
SQL Error: 1062: Duplicate entry '0' for key 'PRIMARY'
Query: INSERT INTO `pdf_prefs` (`landscape`) VALUES ('L')
Here's what I'm doing:
$this->PdfPref->id = $id; /* $id = 0 in this case */
$this->PdfPref->saveField('landscape', $this->data['PdfPref']
['landscape']);
I've tried various other ways and nothing has worked. I have similar
things working in other models, but this one just won't work for me at
all!
Can anyone suggest what I'm doing wrong?
Thanks!
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
To unsubscribe from this group, send email to
cake-php+unsubscribegooglegroups.com or reply to this email with the words
"REMOVE ME" as the subject.
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
To unsubscribe from this group, send email to
cake-php+unsubscribegooglegroups.com or reply to this email with the words
"REMOVE ME" as the subject.