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.
我在sqlite中有一个表,并且字段的ID名称有一个自动增量字段是“profile_id”。
现在我想添加一个新行,除了 profile_id 之外没有任何数据,我需要新创建的行的“profile_id”值,比我的查询应该做什么,请建议我。
谢谢!
您应该使用空值进行插入。插入命令返回 id: long id = db.insert(...);