gpt4 book ai didi

android - 在 Sqlite 表中插入 null

转载 作者:IT老高 更新时间:2023-10-28 21:35:59 26 4
gpt4 key购买 nike

我想弄清楚如何在 Android 中将空值插入到 SQLite 表中。

这是 table :

"create table my table (_id integer primary key autoincrement, " +
"deviceAddress text not null unique, " +
"lookUpKey text , " +
"deviceName text , " +
"contactName text , " +
"playerName text , " +
"playerPhoto blob " +
");";

我想通过 execSQL 使用简单的插入命令,但由于其中一个值是 blob,所以我不能这样做(我认为)。

所以,我使用的是标准的 db.Insert 命令。如何将其中一个值设为 null?

如果我只是在 ContentValues 对象中跳过它,它会自动在列中放置一个空值吗?

最佳答案

您可以使用 ContentValues.putNull(String key)方法。

关于android - 在 Sqlite 表中插入 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9823514/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com