I have the following table in SQLite:
db.execSQL("create table amc(_id integer primary key autoincrement, nome text not null, contratada text not null, tipo text not null, data text not null, respostas integer not null, resultado float);");
The respostas
field is the following list ArrayList<Integer> respostas = new ArrayList<>();
how can I save the values of this ArrayList<>
in my amc
table in the respostas
field?
Would it be possible?