Ask Your Question
2

When using PDOstatement for MySQL, why does inserting the value 0 into a bit(1) field lead to a 1 being recorded in the table?

asked 2023-05-17 21:19:12 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-05-17 21:39:02 +0000

devzero gravatar image

When inserting a value of 0 into a bit(1) field in MySQL using PDOstatement, the value is actually being converted to a boolean value. In MySQL, the boolean value false is represented by 0 and the boolean value true is represented by 1.

Therefore, when you insert a value of 0 into a bit(1) field, MySQL interprets this as false and stores it as 0 in the table. However, when you fetch the data from the table, MySQL returns it as a boolean value, where false is represented by 0 and true is represented by 1.

So, even though you inserted a value of 0 into the bit(1) field, MySQL is actually storing it as false (0), but returning it to you as true (1) when you fetch the data.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-17 21:19:12 +0000

Seen: 15 times

Last updated: May 17 '23