I saw across this site questions similar to this one and the answers were usually not to use bit masks
. One of the strongest reasons not to do that was that it even won't save memory
because the SQL server
wrapped bit
columns to a single byte
.
However, to my understanding, there are no bit columns in SQLite
so there will be some memory waste.
What do you think? To use or not to use?