如何基于公共列合并两个 FMResultSet?
我有两个单独的 SQLite 数据库文件,并使用 FMDB 来访问它们(sqlite 的可可包装器)。
我检索两个结果 - 每个数据库一个,位于两个 FMResultSet 中。
如何使用 FMDB 根据两个结果集的单个公共列对两个 FMResultSet 进行合并和排序?
I have two separate SQLite db files and am using FMDB to access them (cocoa wrapper for sqlite).
I retrieve two results - one from each DB, which is in two FMResultSet.
How do I use FMDB to merge and sort the two FMResultSets based on a single common column of the two resulting sets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FMDB 不会为您处理这个问题,因为它只是一个 sqlite-Wrapper,而不是操作、合并或排序任何数据。一种可能是创建一个临时数据库,在其中插入 FMResultSet。
FMDB will not handle this for you since it is just a sqlite-Wrapper, and not manipulating, merging or sorting any data. A possibility would be to create a temporary database where you insert your FMResultSets.