TheBigK
Well-known member
I'm not sure how to describe this. But here's a code from my datawriter that was throwing error "The field sf_id is not recognised'. I had to change the `sf_id` to 'sf_id'
'sf_id' => array('type' => self::TYPE_UINT, 'autoIncrement' => true),
I've seen that many times while writing SQL queries, I must use `something` over 'something'. Can someone point out the difference?
'sf_id' => array('type' => self::TYPE_UINT, 'autoIncrement' => true),
I've seen that many times while writing SQL queries, I must use `something` over 'something'. Can someone point out the difference?