3

I'm developing a gis java me mobile application and I need simple database to store my ATM and bank branch for a simple search on map. I decide to use floggy as database. Does any body know better database for my situation?

butb0rn
  • 59
  • 5
  • Do you need to perform spatial queries? ST_Distance, ST_Intersects, etc.? – Nate Nov 06 '12 at 19:02
  • No,we have 1000 points that includes branches and ATM_POS, I don't need spatial queries, it's a simple offline application shows these branches and ATM_POS on map. – butb0rn Nov 10 '12 at 07:50

1 Answers1

0

If its an offline database (as in, stored with the application) then why not SQLite? It can store spatial data in WKB (Well Known Binary - the standard) and has quite a lot of java wrappers. Then if you do want to do spatial queries in the future, you can update to SpatiaLite.

Community
  • 1
  • 1
GIS-Jonathan
  • 4,347
  • 11
  • 31
  • 45