我在查数据库的时候报了这个错 数据库的表有这个字段啊。不知道为什么报这个
DB.javapublic class DB {
private static final String DATABASE_NAME = "notes.db";
private static final int DATABASE_VERSION= 1;

private static final String DATABASE_CREATE = "create table notes(_id integer primary key,note text not null,created integer);";

private static final String DATABASE_TABLE ="notes";

private static class DatabaseHelper extends SQLiteOpenHelper
{
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
} @Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(DATABASE_CREATE);

} @Override
public void onUpgrade(SQLiteDatabase db, int oldVerSion, int newVersion) {
db.execSQL("drop table if exists " + DATABASE_TABLE);
onCreate(db);
}
}
private Context mCtx = null;
private DatabaseHelper dbHelper;
private SQLiteDatabase db;

public DB(Context ctx)
{
this.mCtx = ctx;
}

public DB open() throws SQLException
{
dbHelper = new DatabaseHelper(mCtx);
db = dbHelper.getWritableDatabase();
return this;
}

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

public static final String KEY_ROWID = "_id";
public static final String KEY_NOTE = "note";
public static final String KEY_CREATED = "created";

public Cursor getAll()
{
return db.rawQuery("select * from notes;",null);
}


}package com.neusoft;import android.app.ListActivity;
import android.database.Cursor;
import android.os.Bundle;
import android.util.Log;
import android.widget.SimpleCursorAdapter;public class DailyNote extends ListActivity {
private static final String TAG = "Note";

private DB mDbHelper;
private Cursor mNotesCursor;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
//        setContentView(R.layout.main);
//        getListView().setEmptyView(findViewById(R.id.empty));
        setAdepter();
    }
    
//    private String[] note_array = {
//     "yangw-neu",
//     "aht",
//     "hlei",
//     "gasolin"
//    };
    
    private void setAdepter()
    {
     mDbHelper = new DB(this);
     mDbHelper.open();
     fillData();
    
//     ListAdapter adapter = new ArrayAdapter<String>(this,android.R.layout.simple_expandable_list_item_1,note_array);
//     setListAdapter(adapter);
    }
    
    private void fillData()
    {
     try{
     mNotesCursor = mDbHelper.getAll();
     startManagingCursor(mNotesCursor);
    
     String[] from = new String[]{DB.KEY_ROWID};
     int[] to = new int[]{android.R.id.text1};
    
     SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,android.R.layout.simple_list_item_1,mNotesCursor,from,to);
     setListAdapter(adapter);   
     }catch(Exception e)
     {
     Log.e(TAG, "note error: " + e.getMessage());
     }
    }
}