Hi
I have a list of geotomes
List<GeoPoint> geoPointsArray = new ArrayList<GeoPoint>();
I want to add a geoPointsArray array to a SQLite database, and then return the data as an array.
If anyone has a solution, I would be very grateful.
PS
Now I use ContentValues to insert into the array as:
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_TIME, time);
db.insert(tableName, null, initialValues);
Jovan source
share