Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有在 android 中创建任何数据库。我们只是从资产中复制并粘贴数据库:
getmyapplicationContext.getAssets().open(DB_NAME);
我们如何将 ORMLite 与我们的应用程序集成?
如果您使用 ORMLite 创建数据库或使用现有数据库,这没有区别。此外,通常您只创建一次,然后处理现有的。
所以你可能应该使用:
并创建对应于所有数据库表的 ORM 模式类。在那里,您还可以配置现有数据库文件的正确路径。
祝你好运 ;)