gpt4 book ai didi

android - contentProvider 中的 SQLException

转载 作者:行者123 更新时间:2023-11-29 22:24:46 24 4
gpt4 key购买 nike

每个人都知道 Android 的记事本示例。它的内容提供者包含“throw new SQLException("Failed to insert row into "+ uri);"在插入方法的末尾,但是当我尝试在我自己的 contentProvider 中使用这一行时,Eclipse 显示错误“未处理的异常类型 SQLException”。

我怎样才能从这个方法中抛出这个异常?

最佳答案

您需要告诉编译器此方法将抛出此异常,因此请将“throws SQLException”添加到您的方法 header 中,例如

public Uri insert(Uri uri, ContentValues values) throws SQLException {
//dostuff
}

关于android - contentProvider 中的 SQLException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6249252/

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