contentProvider 中的 SQLException
每个人都知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要告诉编译器该方法将抛出此异常,因此将“throws SQLException”添加到您的方法头中,例如
You need to tell the compiler that this method will throw this exception so add "throws SQLException" to your method header e.g.