我可以使用ormlite在Android上动态生成DAO层吗?
我正在尝试解决这个问题。 我想知道是否可以使用 ORMLite(或修改它)来支持这个用例?
谢谢。
I'm trying to solve this problem. I was wondering if it's possible to use ORMLite (or modify it) to support this use case ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用 db4o 并忘记所有 sql 和映射的麻烦。对您的对象进行建模并直接持久化它们。
Just use db4o and forget all the sql and mappings hassle. Model your objects and persist them directly.
现在,您可以创建一个屏幕表,然后可以有一个字段表,其中包含屏幕 ID 的名称、字段名称和其他信息。您可以在屏幕表中拥有一个用户 ID,这样每个用户都可以拥有一个与字段列表相对应的条目。
但除非您确实需要 SQL 功能,否则您可能需要考虑不同的持久化策略,如 @mgv 提到的。
Now, you could create a table of screens which could then have a field table with the name of the screen-id, field name, and other information. You could have a user-id in the screen table so each user could have an entry which corresponds to a list of fields.
But unless you actually need SQL functionality, you may want to consider a different persistence strategy like @mgv mentioned.