我对 OOP 有点陌生,所以我想知道我是否正确地做事。为了与数据库通信,我创建了一个类 SQLiteHelper,女巫完成所有常见的事情(onCreate,onUpdate),还打开和关闭连接。
这是课程,目前它刚刚放在桌面上,但会添加更多内容:
public class SQLiteHelper extends SQLiteOpenHelper{
public static final String DATABASE_NAME = "notebook";
public static final int DATABASE_VERSION = 2;
public static final String TABLE_LIST = "list";
public static final String TABLE_LIST_ID = "_id";
public static final String TABLE_LIST_NAME = "name";
public SQLiteDatabase db;
public SQLiteHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
db.execSQL("create table " + TABLE_LIST + "(" + TABLE_LIST_ID
+ " integer primary key autoincrement, " + TABLE_LIST_NAME
+ " text not null);");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
db.execSQL("DROP TABLE IF EXISTS " + TABLE_LIST);
onCreate(db);
}
public void open(){
db = getWritableDatabase();
}
public void close(){
db.close();
}
}
接下来对于每个表,我将创建一个新类,它扩展了前一个类,并且我在其中执行与该特定表相关的所有操作。例如 ListSQL:
public class ListSQL extends SQLiteHelper {
public ListSQL(Context context) {
super(context);
}
public void delete(int id) {
open();
db.delete(TABLE_LIST, TABLE_LIST_ID + " = " + id, null);
close();
}
}
我的问题是,在 OOP 中这是正确的做事方式吗?特别是在 ListSQL 中使用 open/close 方法以及 db 和 TABLE 变量对我来说似乎有点奇怪?