如何协调android光标'_id'具有远程服务器数据库 UID 的列?

发布于 2024-11-24 13:31:00 字数 182 浏览 1 评论 0原文

任何人都可以澄清如何通过游标将服务器端数据加载到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

垂暮老矣 2024-12-01 13:31:00

_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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文