嗨我用android SDK 1.6编程时出了问题。我正在做“记事本exaple”相同的事情,但当我尝试一些查询时程序崩溃。如果我尝试直接在DatabaseHelper create()方法中进行查询,那么它就会出现,但是这个函数没有。你有什么想法吗?
这是来源:
public class DbAdapter {
public static final String KEY_NAME = "name";
public static final String KEY_TOT_DAYS = "totdays";
public static final String KEY_ROWID = "_id";
private static final String TAG = "DbAdapter";
private DatabaseHelper mDbHelper;
private SQLiteDatabase mDb;
private static final String DATABASE_NAME = "flowratedb";
private static final String DATABASE_TABLE = "girl_data";
private static final String DATABASE_TABLE_2 = "girl_cyle";
private static final int DATABASE_VERSION = 2;
/**
* Database creation sql statement
*/
private static final String DATABASE_CREATE =
"create table "+DATABASE_TABLE+" (id integer, name text not null, totdays int);";
private static final String DATABASE_CREATE_2 =
"create table "+DATABASE_TABLE_2+" (ref_id integer, day long not null);";
private final Context mCtx;
private static class DatabaseHelper extends SQLiteOpenHelper {
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(DATABASE_CREATE);
db.execSQL(DATABASE_CREATE_2);
db.delete(DATABASE_TABLE, null, null);
db.delete(DATABASE_TABLE_2, null, null);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
db.execSQL("DROP TABLE IF EXISTS "+DATABASE_TABLE);
db.execSQL("DROP TABLE IF EXISTS "+DATABASE_TABLE_2);
onCreate(db);
}
}
public DbAdapter(Context ctx) {
this.mCtx = ctx;
}
public DbAdapter open() throws SQLException {
mDbHelper = new DatabaseHelper(mCtx);
mDb = mDbHelper.getWritableDatabase();
return this;
}
public void close() {
mDbHelper.close();
}
public long createGirl(int id,String name, int totdays) {
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_ROWID, id);
initialValues.put(KEY_NAME, name);
initialValues.put(KEY_TOT_DAYS, totdays);
return mDb.insert(DATABASE_TABLE, null, initialValues);
}
public long createGirl_fd_day(int refid, long fd) {
ContentValues initialValues = new ContentValues();
initialValues.put("ref_id", refid);
initialValues.put("calendar", fd);
return mDb.insert(DATABASE_TABLE, null, initialValues);
}
public boolean updateGirl(int rowId, String name, int totdays) {
ContentValues args = new ContentValues();
args.put(KEY_NAME, name);
args.put(KEY_TOT_DAYS, totdays);
return mDb.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null) > 0;
}
public boolean deleteGirlsData() {
if (mDb.delete(DATABASE_TABLE_2, null, null)>0)
if(mDb.delete(DATABASE_TABLE, null, null)>0)
return true;
return false;
}
public Bundle fetchAllGirls() {
Bundle extras = new Bundle();
Cursor cur = mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_NAME,
KEY_TOT_DAYS}, null, null, null, null, null);
cur.moveToFirst();
int tot = cur.getCount();
extras.putInt("tot", tot);
int index;
for (int i=0;i<tot;i++){
index=cur.getInt(cur.getColumnIndex("_id"));
extras.putString("name"+index, cur.getString(cur.getColumnIndex("name")));
extras.putInt("totdays"+index, cur.getInt(cur.getColumnIndex("totdays")));
}
cur.close();
return extras;
}
public Cursor fetchGirl(int rowId) throws SQLException {
Cursor mCursor =
mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
KEY_NAME, KEY_TOT_DAYS}, KEY_ROWID + "=" + rowId, null,
null, null, null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
public Cursor fetchGirlCD(int rowId) throws SQLException {
Cursor mCursor =
mDb.query(true, DATABASE_TABLE_2, new String[] {"ref_id",
"day"}, "ref_id=" + rowId, null,
null, null, null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
public static final String KEY_NAME = "name";
public static final String KEY_TOT_DAYS = "totdays";
public static final String KEY_ROWID = "_id";
private static final String TAG = "DbAdapter";
private DatabaseHelper mDbHelper;
private SQLiteDatabase mDb;
private static final String DATABASE_NAME = "flowratedb";
private static final String DATABASE_TABLE = "girl_data";
private static final String DATABASE_TABLE_2 = "girl_cyle";
private static final int DATABASE_VERSION = 2;
/**
* Database creation sql statement
*/
private static final String DATABASE_CREATE =
"create table "+DATABASE_TABLE+" (id integer, name text not null, totdays int);";
private static final String DATABASE_CREATE_2 =
"create table "+DATABASE_TABLE_2+" (ref_id integer, day long not null);";
private final Context mCtx;
private static class DatabaseHelper extends SQLiteOpenHelper {
DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(DATABASE_CREATE);
db.execSQL(DATABASE_CREATE_2);
db.delete(DATABASE_TABLE, null, null);
db.delete(DATABASE_TABLE_2, null, null);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
+ newVersion + ", which will destroy all old data");
db.execSQL("DROP TABLE IF EXISTS "+DATABASE_TABLE);
db.execSQL("DROP TABLE IF EXISTS "+DATABASE_TABLE_2);
onCreate(db);
}
}
public DbAdapter(Context ctx) {
this.mCtx = ctx;
}
public DbAdapter open() throws SQLException {
mDbHelper = new DatabaseHelper(mCtx);
mDb = mDbHelper.getWritableDatabase();
return this;
}
public void close() {
mDbHelper.close();
}
public long createGirl(int id,String name, int totdays) {
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_ROWID, id);
initialValues.put(KEY_NAME, name);
initialValues.put(KEY_TOT_DAYS, totdays);
return mDb.insert(DATABASE_TABLE, null, initialValues);
}
public long createGirl_fd_day(int refid, long fd) {
ContentValues initialValues = new ContentValues();
initialValues.put("ref_id", refid);
initialValues.put("calendar", fd);
return mDb.insert(DATABASE_TABLE, null, initialValues);
}
public boolean updateGirl(int rowId, String name, int totdays) {
ContentValues args = new ContentValues();
args.put(KEY_NAME, name);
args.put(KEY_TOT_DAYS, totdays);
return mDb.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null) > 0;
}
public boolean deleteGirlsData() {
if (mDb.delete(DATABASE_TABLE_2, null, null)>0)
if(mDb.delete(DATABASE_TABLE, null, null)>0)
return true;
return false;
}
public Bundle fetchAllGirls() {
Bundle extras = new Bundle();
Cursor cur = mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_NAME,
KEY_TOT_DAYS}, null, null, null, null, null);
cur.moveToFirst();
int tot = cur.getCount();
extras.putInt("tot", tot);
int index;
for (int i=0;i<tot;i++){
index=cur.getInt(cur.getColumnIndex("_id"));
extras.putString("name"+index, cur.getString(cur.getColumnIndex("name")));
extras.putInt("totdays"+index, cur.getInt(cur.getColumnIndex("totdays")));
}
cur.close();
return extras;
}
public Cursor fetchGirl(int rowId) throws SQLException {
Cursor mCursor =
mDb.query(true, DATABASE_TABLE, new String[] {KEY_ROWID,
KEY_NAME, KEY_TOT_DAYS}, KEY_ROWID + "=" + rowId, null,
null, null, null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
public Cursor fetchGirlCD(int rowId) throws SQLException {
Cursor mCursor =
mDb.query(true, DATABASE_TABLE_2, new String[] {"ref_id",
"day"}, "ref_id=" + rowId, null,
null, null, null, null);
if (mCursor != null) {
mCursor.moveToFirst();
}
return mCursor;
}
罐的 来自意大利的Valerio:)
答案 0 :(得分:2)
我还没有机会测试我的理论,但看起来“DATABASE_CREATE”定义了“id”,而你在查询中检索“_id”。您可以在顶部定义“KEY_ROWID”,但不要在数据库创建查询中使用该常量。
然而,如果这是你的主要问题,我不知道为什么“如果我尝试直接在DatabaseHelper中创建一个查询create()metod它会去,但是这个函数没有”。< / p>
希望有所帮助。
答案 1 :(得分:2)
我遇到了同样的问题。即使在从代码中解决了所有问题之后,查询仍然会崩溃。
我更改了数据库名称并开始工作。
我怀疑,因为自从我测试了早期的“坏”代码迭代以来我没有重新启动我的模拟器,所以DB的一个实例在其中一个运行中被楔入。
答案 2 :(得分:1)
我遇到了同样的问题,我解决了你关于创建新数据库的评论。
仅在创建数据库时调用onCreate()方法。如果已经创建了数据库(它是第一次尝试代码时创建的),则下次运行模拟器时将不会调用onCreate。 因此,在onCreate()方法中修改sql语句不会在下次启动模拟器时更改表,并且您仍将拥有在第一次启动模拟器并创建数据库时创建的表。在这种情况下,您的代码中将出现错误的sql语句。 第二种情况是你使用了adb-sqlite3控制台(shell)程序并修改了表格。数据库已经创建了,所以onCreate()不会被调用 - 无论你用什么代码来描述你onCreate()中的表,你的表都和你通过shell修改它一样......
我的问题是我使用shell删除了表,并期望onCreate重新创建它们,但数据库已经创建,并且不再有表。
因此,结论是第一次创建DATABASE时会创建所有表,如果需要修改它们,可以通过shell修改它们或删除数据库,以便在运行程序时调用onCreate
天哪,这个文字听起来像一个无限循环:) 对不起让答案复杂化,我真的真的已经分层...... :( 祝你好运!答案 3 :(得分:0)
一般情况下,正在进行的错误处理不多。我可以看到很多地方代码可能会崩溃。
对于初学者来说,用try-catch
包围这些东西另外:
SELECT id,name from table
然后你可以用getString(1)访问名字; < / LI>
最重要的是,请熟悉adb logcat
(下面的链接)。此工具将从您的设备中提取日志缓冲区并实时监控它以进行崩溃。
如果你的应用程序崩溃了,adb + logcat会显示堆栈跟踪,它会指向应用程序崩溃的确切行,以及原因!
https://developer.android.com/studio/command-line/adb.html#logcat