HI,
I have array list of geopoints
List<GeoPoint> geoPointsArray = new ArrayList<GeoPoint>();
I want to put geoPointsArray array in to SQLite database and then fetch the data back as an array.
If anyone has a solution I would be greatly appreciated.
P.S.
Now I use ContentValues for insert into array as:
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_TIME, time);
db.insert(tableName, null, initialValues);