SQLiteOpenHelper错误

发布于 2024-10-21 03:06:03 字数 509 浏览 2 评论 0原文

我读了这个 http://developer.android.com/resources/tutorials/notepad/ index.html 现在尝试创建我自己的简单示例。出于简化原因,我没有自己的适配器类。 尝试此操作时,

SQLiteOpenHelper dbHelper = new SQLiteOpenHelper(this,"myDB.db3", null, 1);

当我在应用程序的 onCreate 方法中

Cannot instantiate the type SQLiteOpenHelper

我看到 Ecplise 告诉我,我没有看到与 SDK 教程基本不同的内容(除了我对构造函数的调用没有包装在帮助程序类中)。

谢谢,A.

I read this http://developer.android.com/resources/tutorials/notepad/index.html and now try to create my own simple example. For simplification reasons I don't have my own Adapter Class. When I try this

SQLiteOpenHelper dbHelper = new SQLiteOpenHelper(this,"myDB.db3", null, 1);

in my applications onCreate method I see Ecplise telling me

Cannot instantiate the type SQLiteOpenHelper

I am not seeing what is basically different from the SDK tutorial (apart from that my call to the constructor is not wrapped in helper classes).

Thanks, A.

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

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

发布评论

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

评论(1

古镇旧梦 2024-10-28 03:06:03

SQLiteOpenHelper 是一个抽象类,您应该继承它才能实例化它。

public class MyOpenHelper extends SQLiteOpenHelper {

...

}

MyOpenHelper dbHelper = new MyOpenHelper(...);

SQLiteOpenHelper is an abstract class, you should inherit from it in order to instantiate one.

public class MyOpenHelper extends SQLiteOpenHelper {

...

}

MyOpenHelper dbHelper = new MyOpenHelper(...);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文