Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I force CakePHP 2.x to retrieve tinyint database column not as boolean but as tinyint?

MySQL:

Column        |    type
-------------------------------
...           |    ...
category_id   |    tinyint(1)
...           |    ...

CakePHP:

$this->request->data = $this->Question->read();
var_dump($this->request->data['Question']['category']);

The value is always 0 (if the question I'm fetching as the category id 0) or 1 (if the question has any other category id).

share|improve this question
What do you mean? In case of 0 or 1 it retrieves that value, than its php who converts it to boolean (but that depends on you); if the int is 9, for example, what does it become?. Anyway, you can always cast it to int : intval($result) or (int)$result – Damien Pirsy May 29 '12 at 14:59
MySQL tinyint accept value from -128 to 127, I use this type to store categories id in a table. When I ask for category e.g 12, it retrieves 1... – Baptiste Costa May 29 '12 at 15:04
You should post the code you're using then – Damien Pirsy May 29 '12 at 15:05
Oh, so it's tinyint(1) you're using...wouldn't that mean the IDs are all truncated after 1 figure? – Damien Pirsy May 29 '12 at 15:13

1 Answer

up vote 5 down vote accepted

Use TINYINT(2) instead. If the length is 1, Cake sees it as a boolean.

share|improve this answer
If he used TINYINT(1) doesn't that mean that all his category ids would be truncated? At that point there's no problem because CakePHP doesn't have the right data to fetch anyhow. – Mike B May 29 '12 at 15:10
If he was storing IDs in a tinyint it would truncate them anyway. tinyints are really just for booleans (as far as Cake goes), not for FKs. – jeremyharris May 29 '12 at 15:11
As I said to Damien Pirsy, tinyint has a range of 255. I have 15 categories so I thought it was enough. Is there something i'm missing ? – Baptiste Costa May 29 '12 at 15:14
@BaptisteCosta Tinyint has that range, unless you limit it, as you're doing – Damien Pirsy May 29 '12 at 15:15
1  
jeeremy is right - this is the only solution. and also the proper way of handling this type of data in cake! – mark May 29 '12 at 15:19
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.