I have a long Array, and for every long value i m using this query to fetch a string Array from sqlite database.
long[] mylong= {1,3,5,6,7};
Dbadapter finaldb = new Dbadapter(this);
for(int i=0; i<mylong.length; i++) {
finaldb.open();
String[] string_array = finaldb.getArray(mylong[i]);
finaldb.close();
now, i want to store these different string arrays with some name so that i can use them after. but i don't know how to achieve this. If any one can guide me in the right direction?
java.util.Map<Long, String[]>