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.
有没有办法在没有应用程序上下文的情况下访问 ORMLite DatabaseHelper?我的数据结构中有一个多层次结构,但我总是只将父级保存在数据库中,并想用 SQL 语句检索子级。
我宁愿这样做而不必使用上下文,特别是对于单元测试。这是可能的,还是我总是需要有上下文才能与数据库交互?
当您按照这些示例进行操作时,您会启动一次数据库助手或管理器,并使用来自您的启动 Activity 或其父级的基本上下文。
从那时起,您无需在任何上下文中重新创建它。
您将需要在某一时刻提供一个上下文,但是第一次启动它。