can someone tell me how to change a column to an array ???
Im Making a Database and want view one of my column in android.
I have 6 column, but i just want one column from them to be an array for my listview.
Here is my table :
static final String KEY_ROWID = "_id";
static final String KEY_A = "a";
static final String KEY_B = "b";
static final String KEY_C = "c";
static final String KEY_D = "d";
static final String KEY_E = "e";
My goal is to make the "a" column to an array like this :
String arraylist[] = { "a" column data };
how can i get that ????