+ 1
How can i insert multiple checkbox values in sqlite database in android
CRUD opretions in android
2 ответов
+ 3
someone else asked this here: https://stackoverflow.com/questions/48358481/insert-checkbox-values-into-sqlite-database
and the advice was to store the checkbox value as integer or string values 1 or 0.
a checkbox is just a binary switch, so only has two values. simplest to just store it as 1 or 0.
+ 2
you can also store multiple values in one value using bitwise operators: http://nikohelle.net/2010/11/02/tip-use-bitwise-operators-to-store-multiple-values-in-one-value/