I have set up an SQlite database that has ID, Latitude and logitude columns.
To add values in the DB i'm using this:
- Code: Select all
CoordBD CoordBd = new CoordBD(this);
Coordo coordo = new Coordo(36.869686,10.315642 );
CoordBd.open();
CoordBd.insertCoordo(coordo);
But, after storing the necessary data to the DB i want to retrieve them and mark them in map.
Can you please me ?
Thank you for your help.


