User1324895001 posted
We have built a project that runs a SQLite db for the backend stuff. Something we noticed while finishing up the project was issues with Boolean values.
In one table we have 1 column that is set to Boolean as the type, our inserts are working and you can see when a record is inserted that the appropriate data is being inserted and stored. But when viewing the information on the page its always showing false.
Now by accident we found out that if we go into the db and simply set and reset the Boolean value, when we revisit the page it shows correct.
So even though our inserts are working, there is a manual step to have it reflect correctly.
Can anyone offer suggestions on how to resolve this or things to try or check to see if we can fix this..