0

好吧,另一个帖子,我的意思是:

数据库中的每个表都应该有一个 SQLiteOpenHelper 吗?

我怀疑该应用程序是否有一个或多个助手,嗯,anwser 是 1 个助手,很多列。

现在是第二部分,我实际上正在制作本教程: http ://www.vogella.com/articles/AndroidSQLite/article.html

但我想在数据库中使用超过 1 个表,好的,我已经完成了工作,现在我正在尝试制作所谓的数据访问对象“DAO”。问题是一样的,最好有一个 DAO,或者每个表都有一个(每个表类也有一个)或者最后一个 DAO 类,其中包含我可以在应用... ?

这就是本教程中称为 DAO 的内容:

package de.vogella.android.sqlite.first;

import java.util.ArrayList;
import java.util.List;

import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;

public class CommentsDataSource {

  // Database fields
  private SQLiteDatabase database;
  private MySQLiteHelper dbHelper;
  private String[] allColumns = { MySQLiteHelper.COLUMN_ID,
      MySQLiteHelper.COLUMN_COMMENT };

  public CommentsDataSource(Context context) {
    dbHelper = new MySQLiteHelper(context);
  }

  public void open() throws SQLException {
    database = dbHelper.getWritableDatabase();
  }

  public void close() {
    dbHelper.close();
  }

  public Comment createComment(String comment) {
    ContentValues values = new ContentValues();
    values.put(MySQLiteHelper.COLUMN_COMMENT, comment);
    long insertId = database.insert(MySQLiteHelper.TABLE_COMMENTS, null,
        values);
    Cursor cursor = database.query(MySQLiteHelper.TABLE_COMMENTS,
        allColumns, MySQLiteHelper.COLUMN_ID + " = " + insertId, null,
        null, null, null);
    cursor.moveToFirst();
    Comment newComment = cursorToComment(cursor);
    cursor.close();
    return newComment;
  }

  public void deleteComment(Comment comment) {
    long id = comment.getId();
    System.out.println("Comment deleted with id: " + id);
    database.delete(MySQLiteHelper.TABLE_COMMENTS, MySQLiteHelper.COLUMN_ID
        + " = " + id, null);
  }

  public List<Comment> getAllComments() {
    List<Comment> comments = new ArrayList<Comment>();

    Cursor cursor = database.query(MySQLiteHelper.TABLE_COMMENTS,
        allColumns, null, null, null, null, null);

    cursor.moveToFirst();
    while (!cursor.isAfterLast()) {
      Comment comment = cursorToComment(cursor);
      comments.add(comment);
      cursor.moveToNext();
    }
    // Make sure to close the cursor
    cursor.close();
    return comments;
  }

  private Comment cursorToComment(Cursor cursor) {
    Comment comment = new Comment();
    comment.setId(cursor.getLong(0));
    comment.setComment(cursor.getString(1));
    return comment;
  }
} 

提前致谢。

4

1 回答 1

1

这个类将帮助您的应用程序与您的数据库进行交互。您应该只有一个 DAO 类,其中包含您需要的所有方法。(不同表的不同方法。)

检查以下示例:

public void insertInTableA (String[]) //or any args
{
    //Logic for table A row insertion
}

public void insertInTableB (String[]) //or any args
{
    //Logic for table B row insertion
}

public void dltFromTableA (String where) //or any args
{
    //Logic for table A row deletion
}

public void dltFromTableB (String where) //or any args
{
    //Logic for table B row deletion
}

//Other function as per requirement
于 2012-12-17T12:52:24.253 回答