I am currently designing a WPF application using a SQLite database. As part of this form, users are asked whether they have any disabilities and can check a couple of options in a list, such as No disability, Leg problems, heart issues etc. This will all go into a database that has a Student table. Currently my Student table SQL code is as follows:
CREATE TABLE STUDENT(
StudentID int(5),
firstName string(256),
...,
age int(3)
);
The issue I am having is not knowing how to store this in the database. I know SQLite does not support Boolean values as this was my initial idea. If the box was selected then the value would be set to True and vice versa. In the absence of Boolean values, how would I go about storing this data in a database?