contentProvider 中的 SQLException

发布于 2024-11-14 03:59:51 字数 181 浏览 3 评论 0原文

每个人都知道 Android 版的记事本。其内容提供程序包含“抛出新的 SQLException(“无法将行插入“ + uri);”在插入方法的末尾,但是当我尝试在我自己的 contentProvider 中使用这一行时,Eclipse 显示错误“未处理的异常类型 SQLException”。

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

Everybody knows NotePad exaple for android. Its content provider contains "throw new SQLException("Failed to insert row into " + uri);" in the end of insert method, but when I try to use this row in my own contentProvider Eclipse shows an error "Unhandled exception type SQLException".

How can I throw this Exception from this method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百合的盛世恋 2024-11-21 03:59:51

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

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

You need to tell the compiler that this method will throw this exception so add "throws SQLException" to your method header e.g.

public Uri insert(Uri uri, ContentValues values) throws SQLException {
    //dostuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文