如何在数据库中插入地理点值?
我有 2 个地理点值,我想保存在本地数据库中,但我不知道应该使用哪种数据类型将该值插入本地数据库中。
I have 2 Geopoint values and I want to save in local database but I dont know which datatype should I use to insert that values in local database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
long
作为数据类型并将其存储在 SQLite 数据库中:http://p-xr.com/android-tutorial-simple-but-persistent-data-storage/
该链接包含有关创建/寻址 SQLite 数据库的信息
Use
long
as your datatype and store it in a SQLite database:http://p-xr.com/android-tutorial-simple-but-persistent-data-storage/
The link contains info on making / adressing the SQLite db
最好的方法是,您必须从 GeoPoint 获取经度和纬度值作为长值。然后您可以将其存储在数据库中。
Best way, you have to get the longitude and latitude value from the GeoPoint as Long Value. Then you can store it in the Database.