如何协调android光标'_id'具有远程服务器数据库 UID 的列?
任何人都可以澄清如何通过游标将服务器端数据加载到 android sqlite 数据库中应该与 id 相关吗? 我是否应该在每个表中都有“_id”列,并且还有一个包含服务器端 uid 的列?这看起来很尴尬。 我想知道是否可以将我自己的行 ID(来自 PostgreSql 数据库)插入到“_id”列中,以及这是否会产生一些让我以后感到抱歉的含义?
Can anyone clarify how loading server side data into an android sqlite db via a cursor should work with regards to ids?
Should I have '_id' column in each table and also a column with my server side uids? This seems awkward.
I am missing whether I can just insert my own row ids (from a PostgreSql db) into the '_id' column and whether there are some implications of this that will make me sorry later?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
_id
仅在 CursorAdapter 中使用来确定哪一列是 id。您可以在 CursorAdapter 中覆盖此行为或将查询中的别名添加到 id。_id
is used only in CursorAdapter to determine which column is id. You can override this behavior in CursorAdapter or add alias in query to id.