1

这些功能在哪里实现?

https://android.github.io/android-ktx/core-ktx/androidx.database/android.database.-cursor/index.html

我看到包 androidx.core.database 但找不到实现。只有这样的功能。

inline fun Cursor.getBlobOrNull(index: Int) = if (isNull(index)) null else getBlob(index)
inline fun Cursor.getDoubleOrNull(index: Int) = if (isNull(index)) null else getDouble(index)
inline fun Cursor.getFloatOrNull(index: Int) = if (isNull(index)) null else getFloat(index)
inline fun Cursor.getIntOrNull(index: Int) = if (isNull(index)) null else getInt(index)
inline fun Cursor.getLongOrNull(index: Int) = if (isNull(index)) null else getLong(index)
inline fun Cursor.getShortOrNull(index: Int) = if (isNull(index)) null else getShort(index)
inline fun Cursor.getStringOrNull(index: Int) = if (isNull(index)) null else getString(index)
4

1 回答 1

1

CursorJake Wharton 删除了基于名称的扩展。

用他的话说:

他们鼓励一种低效率的模式。您应该在迭代之前查找列名一次,或者使用更高级别的抽象,例如 Room 或 SQL Delight,它会为您完成这项工作。

您可以在此处找到此包的完整 git 历史记录: https ://android.googlesource.com/platform/frameworks/support/+log/android-room-release/core/ktx/src/main/java/androidx/core /数据库

于 2019-04-22T15:57:25.657 回答