Re: Not getting one of MySQL errors

2010-02-22 Thread Dr. Loboto
Save query won't be executed at all if data do not pass validation. Check $this->validationErrors On Feb 23, 4:03 am, dtirer wrote: > actually, disregard that.  It's really just not executing the query, > and is returning false.  Not sure why... > > On Feb 22, 1:46 pm, dtirer wrote: > > > > > Ac

Re: Not getting one of MySQL errors

2010-02-22 Thread dtirer
actually, disregard that. It's really just not executing the query, and is returning false. Not sure why... On Feb 22, 1:46 pm, dtirer wrote: > Actually the stranger part of this might be this.  In the dumped > queries, there is a select statement as follows: > > SELECT `User`.`id`, `User`.`fir

Re: Not getting one of MySQL errors

2010-02-22 Thread dtirer
Actually the stranger part of this might be this. In the dumped queries, there is a select statement as follows: SELECT `User`.`id`, `User`.`first_name`, `User`.`last_name`, `User`.`email`, `User`.`password`, `User`.`phone`, `User`.`address`, `User`.`city`, `User`.`zip`, `User`.`region`, `User`.`

Not getting one of MySQL errors

2010-02-22 Thread dtirer
My debug value is set to 2, and it's displaying all the queries, except the one I need. I have an Items Controller method that is calling this User Model (Item belongsTo User): function add_basic($email, $password) { $this->create();