SQLiteOpenHelper错误
我读了这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLiteOpenHelper 是一个抽象类,您应该继承它才能实例化它。
SQLiteOpenHelper is an abstract class, you should inherit from it in order to instantiate one.