I have created an android application using Android (api 15) and the android:minSdkVersion is "8". I am using the 4.1 emulator to run this application. It's working fine in the emulator, and installs successfully in a device with api 4.1...but when activity starts that uses my datak class (database connection file), the application stops working.
The app is a quiz in which there is one question and one possible answer among four. The database name is "KBC" and is retrieved when i push play the game...but on the device the database isn't retrieved. I think the device can't find my database file "KBC" location which has all the tables and questions that i pushed in emulator...
In the virtual device file explorer it shows the database kbc in location "data/data/android.kt.banoge.karodpati/databases"
The code for my datak class is included below. I have already looked at many other questions but they are not helpful:
- http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/
- Android application working in emulator but not in device
Can anybody please give me a reason or solution for this problem?
public class Datak
{
public static final String QUE = "question";
public static final String A = "optionA";
public static final String B = "optionB";
public static final String C = "optionC";
public static final String D = "optionD";
public static final String ANS = "answer";
public static final String LEV = "level";
private static final String TAG = "DBAdapter";
public static final String played = "played";
public static final String five = "five";
public static final String one = "one";
public static final String second = "second";
public static final String first = "first";
private static final String DATABASE_NAME = "KBC";
private static final String DATABASE_TABLE = "main";
private static final String DATABASE_TABLE2 = "main2";
private static final String DATABASE_TABLE3 = "main3";
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_CREATE =
"create table "+ DATABASE_TABLE +"("
+ QUE + " text not null,"
+ A + " text not null, "
+ B + " text not null,"
+ C + " text not null,"
+ D + " text not null,"
+ ANS + " text not null,"
+ LEV + " text not null); ";
private final Context context;
private DatabaseHelper DBHelper;
private SQLiteDatabase db;
public Datak(Context ctx)
{
this.context = ctx;
DBHelper = new DatabaseHelper(context);
}
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);
}
@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 titles");
onCreate(db);
}
}
public Datak open() throws SQLException
{
db = DBHelper.getWritableDatabase();
return this;
}
public void close()
{
DBHelper.close();
}
public Cursor getValue()
{
return db.query(DATABASE_TABLE, new String[] {
QUE,
A,
B,
C,
D,
ANS,LEV
},
null,
null,
null,
null,
null,null
);
}
public Cursor getValue2()
{
return db.query(DATABASE_TABLE2, new String[] {
QUE,
A,
B,
C,
D,
ANS,LEV
},
null,
null,
null,
null,
null,null
);
}
public Cursor getValue3()
{
return db.query(DATABASE_TABLE3, new String[] {
QUE,
A,
B,
C,
D,
ANS,LEV
},
null,
null,
null,
null,
null,null
);
}
public Cursor getState()
{
return db.query("states", new String[] {
played,
five,
one,
second,
first
},
null,null,null,null,null);
}
public void updateRow(int a)
{
final Cursor c1;
int pl;
ContentValues CV=new ContentValues();
c1=db.query("states", new String[] {
played,
five,
one,
second,
first
},
null,null,null,null,null);
c1.moveToPosition(0);
if(a==1)
{
pl=c1.getInt(0);
pl++;
CV.put(played, pl);
}
if(a==2)
{
pl=c1.getInt(1);
pl++;
CV.put(five, pl);
}
if(a==3)
{
pl=c1.getInt(2);
pl++;
CV.put(one, pl);
}
if(a==4)
{
pl=c1.getInt(3);
pl++;
CV.put(second, pl);
}
if(a==5)
{
pl=c1.getInt(4);
pl++;
CV.put(first, pl);
}
db.update("states", CV, null, null);
c1.close();
}
